Vintage
Vintage copied to clipboard
Vintage mode adds a vi style command mode to Sublime Text 2
Vintage should support '(' / ')' for moving to beginning / end of sentences. There is an associated sublime forum thread [here](https://www.sublimetext.com/forum/viewtopic.php?f=2&t=8049&p=33738&hilit=vintage+sentence).
Enter insert mode and type: ``` Test1 Test2 Test3 ``` Now you are in command mode with three items on the undo stack. Hit "u" in command mode to undo...
I'm not sure whether "text object" is the proper term here, but please read on! Basically, in Vim, you can type `d/hamster`, hit enter, and Vim will delete all text...
Say you have multiple instances of a word selected. W/o Vintage pressing `escape` clears the selection. With Vintage it changes from insert mode to command mode. I'd like to override...
2j vs 2k
http://i.imgur.com/5Q2Ro.jpg If i type 2j i exptect to move 2 lines, but it moves only one line (1j and 2j does the same thing)
Those shortcuts do enter insert mode, but they don't add a new line as expected. See the annoucement of Sublime Text 3, http://www.sublimetext.com/blog/articles/sublime-text-3-beta/ as well as this forum post: http://www.sublimetext.com/forum/viewtopic.php?f=3&t=10788
Select part of a line in visual mode, hit to delete that text and enter insert mode. An extra character (one past the selection) is also deleted.
``` line one line two ``` putting cursor on the e on line 1, then pressing v (vis mode), then j (to highlight next line), then D should yank both...
Say, we have a line of code: ``` python return [vm for vm in vms if vms[vm]['is_a_template']] ``` # Classic vi 1. Put cursor on 'i' in 'if' 2. Press...
reindent ( == ) can not reveive a prefix_repeat ,because there is no `"motion_args": {"to": "line" }` in args ``` { "keys": ["="], "command": "set_motion", "args": { "motion": "expand_selection", "motion_args":...