Tagged Questions
0
votes
2answers
42 views
Calendar.vim E492: Not an editor command: Calendar
I am trying to install the calendar.vim plugin on mac osx snow leopard running gvim. I have pathogen.vim installed, so I followed the instructions on github to install calendar.vim from the terminal:
...
2
votes
1answer
261 views
Vim script check running platform
" Get running OS
let os = ""
if has("win32")
let os="win"
else
if has("unix")
let s:uname = system("uname")
if s:uname == "Darwin"
let os="mac"
else
let os="unix"
endif
...
6
votes
1answer
637 views
In vim, how to map “command-right” and “command-left” to beginning of line and end of line on mac?
I'm trying to get it to be like default text editing in Mac. I tried
map! <D-Left> 0
and
map! <D-Right> $
in ~/.vimrc, but of course it didn't work. How can i do this?