How to show the current cursor row and column position, for example in Eclipse?

How do you view the current cursor row and column position in Xcode? This is independent of showing the line number on the active left side of the sheet, as you can show the "Line, column" or see it.

Here is an example from Eclipse -

enter image description here

+6
source share
2 answers

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

If you are coding in c / C ++, I highly recommend switching to QtCreator or Clion . I personally prefer QtCreator, since 1) it has a fakeVim key binding and 2) it is better to load characters and give autocomplete suggestions.

+3
source

Try this Xcode plugin: Backlight for Xcode

You can use Alcatraz to easily install this plugin, and another way to install it:

  • Download source
  • Build code
  • Restart xcode
  • (check out the Github page on how to configure the plugin further)
0
source

All Articles