Skip to content

Instantly share code, notes, and snippets.

@acoffman
Created November 1, 2010 14:46
Show Gist options
  • Save acoffman/658276 to your computer and use it in GitHub Desktop.
Save acoffman/658276 to your computer and use it in GitHub Desktop.
better directory support than the default
let g:peepopen_loaded = 1
let g:peepopen_cwd = getcwd()
let s:save_cpo = &cpo
set cpo&vim
function s:LaunchPeepOpenViaVim()
let cwd = g:peepopen_cwd
silent exe "!open -a PeepOpen " . shellescape(cwd)
endfunction
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment