From 7cf5d06c8c96d3ae3d41d8a54bfc386f13b3c4a4 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Fri, 27 Dec 2013 14:43:43 -0200 Subject: Cleaning up modules --- .../plugin/startshell_mapping.vim.disabled | 36 ---------------------- 1 file changed, 36 deletions(-) delete mode 100644 modules/vim/vim.dot.link/plugin/startshell_mapping.vim.disabled (limited to 'modules/vim/vim.dot.link/plugin/startshell_mapping.vim.disabled') diff --git a/modules/vim/vim.dot.link/plugin/startshell_mapping.vim.disabled b/modules/vim/vim.dot.link/plugin/startshell_mapping.vim.disabled deleted file mode 100644 index e9704f4..0000000 --- a/modules/vim/vim.dot.link/plugin/startshell_mapping.vim.disabled +++ /dev/null @@ -1,36 +0,0 @@ -"plugin from http://got-ravings.blogspot.com/2010/07/vim-pr0n-sample-nerd-tree-plugins.html -"guard against sourcing the script twice -if exists("g:loaded_nerdtree_start_shell_mapping") - finish -endif -let g:loaded_nerdtree_start_shell_mapping = 1 - -"bind 'S' to NERDTreeStartShell() -call NERDTreeAddKeyMap({ - \ 'key': 'S', - \ 'callback': 'NERDTreeStartShell', - \ 'quickhelpText': 'start a :shell in this dir' }) - -"change to the dir of the current node and start a :shell -function! NERDTreeStartShell() - - "grab the currently selected dir node (returns - "the parent dir if a file is selected) - let n = g:NERDTreeDirNode.GetSelected() - - "save the cwd so we can restore it after the :shell exits - let oldCWD = getcwd() - - try - - ":lcd to to the selected dir and :shell out - exec 'lcd ' . n.path.str({'format': 'Cd'}) - redraw! - shell - - "make sure we restore the cwd to its original state - finally - exec 'lcd ' . oldCWD - endtry - -endfunction -- cgit v1.2.3