diff options
author | Teddy Wing | 2015-07-13 21:03:36 -0400 |
---|---|---|
committer | Teddy Wing | 2015-07-13 21:03:36 -0400 |
commit | 8e3a6bceb290b1e008484c8c777fdcc092a5de02 (patch) | |
tree | e652286ac93b6f4691f57ca5faa378681be949b4 | |
parent | 236fcf4d68da2c5076b37081dc13ff4b865c528a (diff) | |
download | dotvim-8e3a6bceb290b1e008484c8c777fdcc092a5de02.tar.bz2 |
vimrc: Remove Command-T configuration
Now that I've removed Command-T
(236fcf4d68da2c5076b37081dc13ff4b865c528a), we can remove its
configuration.
-rw-r--r-- | vimrc | 10 |
1 files changed, 1 insertions, 9 deletions
@@ -310,6 +310,7 @@ " files in the pick list. " * Add mappings to use pick.vim for opening buffers in new splits, " vsplits, and tabs +" * Remove Command-T configuration. Switching to pick. " @@ -446,15 +447,6 @@ endif " Plugins " ======= -" Command-T -" Remap Command-T from <leader>t to <leader>d (BBEdit style) -nnoremap <leader>d :CommandT<cr> -nnoremap <leader>sf :CommandTFlush<cr> - -" Directories & files to ignore during Command-T searches -let g:CommandTWildIgnore=&wildignore . ",*/vendor/*,*/node_modules/*" - - " pick let g:pick_command = "find * -type f -o -type l" |