Reputation: 194
I mean sublime text 2.I wanna achieve something like line 4. Just make console show the same.
Any help will be appreciated.
Upvotes: 1
Views: 858
Reputation: 2082
Set up the Key Binding for word wrap toggling. Go to Preferences -> Key Bindings, add the togging command to whatever key combination you want:
[
//...
{ "keys": ["alt+z"], "command": "toggle_setting", "args": {"setting": "word_wrap"}}
]
Upvotes: 0
Reputation: 2964
Turn (View -> Word Wrap) ON and restart the application. If its already on then turn it off and do the same.
Upvotes: 1