ee078856f581

vim: whitespace
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Thu, 17 Feb 2011 15:25:23 -0500
parents 4bd40ce732d7
children fd0cc2799a31 3aaa26865138
branches/tags (none)
files vim/.vimrc

Changes

--- 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 ---------------------------------------------------------------------- {{{