Tagged Questions
6
votes
9answers
665 views
What are the most-used vim commands/keypresses?
I'm a Ruby programming trying to switch from Textmate to MacVim, and I'm having trouble wading through the gargantuan lists of things you can do in VIM and all of the keypresses for them. I'm tired of ...
1
vote
2answers
158 views
Vim: Map Cmd-Alt-j to tabprevious?
I'm having a heck-of-a time with this. I've started using tabs more in MacVim and I'm trying to make a mapping of Cmd+Alt+j and Cmd+Alt+k to move back and forth between tabs. Similar to using ...
1
vote
1answer
515 views
Vim: Key map bindings to open Firefox in background
" Open firefox - maps to Option|Command|f
map <M-D-f> :!/Applications/Firefox.app/Contents/MacOS/firefox-bin -no-remote -P dev
The above works but blocks in Vim. I want to do:
map ...
0
votes
1answer
388 views
Change alt+shift selection behavior in macvim
I'm browsing the web for a while to find a solution to my problem. First, I've already set up my vim with:
if has("gui_macvim")
let macvim_hig_shift_movement = 1
endif
set selection=exclusive
...