--- 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 <silent> <f3> :ErrorsToggle<cr>
command! ErrorsToggle call ErrorsToggle()
+
function! ErrorsToggle() " {{{
if exists("w:is_error_window")
unlet w:is_error_window
@@ -460,8 +461,10 @@
" }}}
" Open quoted ----------------------------------------------------------------- {{{
+
nnoremap <silent> <c-o> :OpenQuoted<cr>
command! OpenQuoted call OpenQuoted()
+
function! OpenQuoted() " {{{
let @r = ''
@@ -478,6 +481,7 @@
exe "silent !open ." . @r
endfunction " }}}
+
" }}}
" MacVim ---------------------------------------------------------------------- {{{