I just downloaded Sublime Text 2 for Windows. The very first thing I wanted to do was remove the line numbers. Search all over the menus and find nothing. So I google it which brings me to this page
http://www.sublimetext.com/docs/file-type-preferences
It says type
- Code: Select all
view.options().set('wordWrap', False)
So I open the console and type
- Code: Select all
view.options().set('lineNumbers', False)
and I get this error.
- Code: Select all
>>> view.options().set('lineNumbers', False)
Traceback (most recent call last):
File "<string>", line 1, in <module>
AttributeError: 'View' object has no attribute 'options'
Are the docs out of date? Am I doing something obviously wrong? Thanks