ruxtain
ruxtain

Reputation: 194

How to word wrap in sublime text's console?

I mean sublime text 2.I wanna achieve something like line 4. Just make console show the same.

example

Any help will be appreciated.

Upvotes: 1

Views: 858

Answers (2)

Alexei Danchenkov
Alexei Danchenkov

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

chaosifier
chaosifier

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

Related Questions