Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to show the cursor's current line & column position in Xcode?

How do you view the cursor's current line and column position in Xcode? This is irrespective of showing the Line Numbers on the active sheet's left side, how can you show 'Line, Column', or look it up.

Here is an example from Eclipse -

enter image description here

like image 916
J-Dizzle Avatar asked Nov 07 '15 18:11

J-Dizzle


People also ask

How do I find the cursor position in Excel?

Click anywhere inside the text of the Get_Cursor_Pos routine and press the F5 key to run the Get_Cursor_Pos macro. You will get a message box displayed with the coordinates of the current position of the mouse pointer.

How do I know my cursor position?

Once you're in Mouse settings, select Additional mouse options from the links on the right side of the page. In Mouse Properties, on the Pointer Options tab, at the bottom, select Show location of pointer when I press the CTRL key, and then select OK. To see it in action, press CTRL.

How to set cursor position in visual studio?

SetCursorPosition() Method in C# Console. SetCursorPosition(Int32, Int32) Method is used to set the position of cursor. Basically, it specifies where the next write operation will begin in the console window.

How do I change the cursor position in TinyMCE editor?

Setting the cursor position You can also hold down shift and then move the cursor with the arrow keys on the keyboard to select content. It has the same effect. The TinyMCE bookmarks this location with the Bookmark Manager API, and then loads the selected location later.


1 Answers

Too my knowledge, showing column number has been removed from new versions of Xcode. You can see line number and set column guide in text editor setting though.

If you are coding in c/c++ I strongly suggest switching to QtCreator or Clion. I personally prefer QtCreator since 1) it has a fakeVim key binding and 2) it is better at loading symbols and giving autocomplete suggestion.

like image 160
Ashkan Avatar answered Oct 20 '22 13:10

Ashkan