Hello,
I am a new user of Sublime Text. And although I like the editor, there are a few things missing. That said, my primary problem right now is that spacing seems to be totally off visually. I changed the user settings to use 2 spaces for indenting (instead of the usual 4).
Now when I code something in python like:
testcode = dict(test_variable1='some random quote',
test_variable2='another random quote')
it looks visually in the editor like:
testcode = dict(test_variable1='some random quote',
test_variable2='another random quote')
Note the indenting is visually totally wrong: test_variable2 and dict seem to be aligned, however both test_variable1 and test_variable2 start at position 17 of each line. So although the spacing is accurate, it looks like it is not.
Same for the ruler I added. I would like to have a ruler at 80 characters so I always know when I am getting to the end of my line (I try to code everything within 80 characters). However, if I set the ruler to position 80 it looks visually more than 160 spaces. Only if I set the ruler value to 39 it comes closest to 80 characters for a majority of all lines, but just a slight majority and not all sentences.
In all my previous editors I have used (of which Geany was the my trusted sidekick for the last 4 years) setting rulers at the 80 character mark was never a problem. And also visually showing the spacing right was not either. This is causing me a lot of headache and a lot of manual code fixing.
Any ideas how I can fix this?
Thanks