# HG changeset patch # User Steve Losh # Date 1297974323 18000 # Node ID ee078856f5814bbbc8de361cf50f8ae945c7c683 # Parent 4bd40ce732d70062f57fd5857556b5c182594fe2 vim: whitespace diff -r 4bd40ce732d7 -r ee078856f581 vim/.vimrc --- a/vim/.vimrc Thu Feb 17 15:23:03 2011 -0500 +++ b/vim/.vimrc Thu Feb 17 15:25:23 2011 -0500 @@ -447,6 +447,7 @@ nmap :ErrorsToggle command! ErrorsToggle call ErrorsToggle() + function! ErrorsToggle() " {{{ if exists("w:is_error_window") unlet w:is_error_window @@ -460,8 +461,10 @@ " }}} " Open quoted ----------------------------------------------------------------- {{{ + nnoremap :OpenQuoted command! OpenQuoted call OpenQuoted() + function! OpenQuoted() " {{{ let @r = '' @@ -478,6 +481,7 @@ exe "silent !open ." . @r endfunction " }}} + " }}} " MacVim ---------------------------------------------------------------------- {{{