" plugin/peepopen.vim " Author: Geoffrey Grosenbach " License: MIT License " Install this file as plugin/peepopen.vim. " If you prefer Command-T, use this snippet in your .gvimrc: " if has("gui_macvim") " macmenu &File.New\ Tab key= " map PeepOpen " end " ============================================================================ " Exit quickly when: " - this plugin was already loaded (or disabled) " - when 'compatible' is set if &cp || exists("g:peepopen_loaded") && g:peepopen_loaded finish endif let g:peepopen_loaded = 1 let s:save_cpo = &cpo set cpo&vim function s:LaunchPeepOpenViaVim() let cwd = getcwd() silent exe "!open -a PeepOpen " . shellescape(cwd) endfunction command! PeepOpen :call LaunchPeepOpenViaVim() noremap