diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2014-02-16 14:02:48 -0300 |
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2014-02-16 14:02:48 -0300 |
| commit | fca5489ba6e80ce08f1b1e3bfeb582b916eb1194 (patch) | |
| tree | 431732d0101611d066ea84aa30cdc1952d1c077d /vim.dot.link/plugin/startshell_mapping.vim.disabled | |
| parent | 5e8c17ed00a8df3c12d459fb9d2634b3a28773ed (diff) | |
| download | vim-fca5489ba6e80ce08f1b1e3bfeb582b916eb1194.tar.gz vim-fca5489ba6e80ce08f1b1e3bfeb582b916eb1194.tar.bz2 | |
Major cleanup
Diffstat (limited to 'vim.dot.link/plugin/startshell_mapping.vim.disabled')
| -rw-r--r-- | vim.dot.link/plugin/startshell_mapping.vim.disabled | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/vim.dot.link/plugin/startshell_mapping.vim.disabled b/vim.dot.link/plugin/startshell_mapping.vim.disabled deleted file mode 100644 index e9704f4..0000000 --- a/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 |
