diff options
| author | Teddy Wing | 2014-07-06 22:15:38 -0400 | 
|---|---|---|
| committer | Teddy Wing | 2014-07-06 22:15:38 -0400 | 
| commit | 05b39f8abb8182bf9968ce0729f0019f78f9d61e (patch) | |
| tree | d2126559b56d8fb20e6c74389be857d7f946223c | |
| parent | 3160c656fbd1342ab5600a610117d46c3a4f63d4 (diff) | |
| download | dotvim-05b39f8abb8182bf9968ce0729f0019f78f9d61e.tar.bz2 | |
vimrc: ignore node_modules/ from Command-T
| -rw-r--r-- | vimrc | 5 | 
1 files changed, 4 insertions, 1 deletions
| @@ -244,6 +244,9 @@  "         to go back & forth between an opening tag and closing tag that   "         extended beyond the page. No more straining to follow a tab stop.  " +"   2014.07.06: +"       * Ignore `node_modules/` directory from Command-T. +"  " Pathogen @@ -380,7 +383,7 @@ nnoremap <leader>d :CommandT<cr>  nnoremap <leader>sf :CommandTFlush<cr>  " Directories & files to ignore during Command-T searches -let g:CommandTWildIgnore=&wildignore . ",*/vendor/*" +let g:CommandTWildIgnore=&wildignore . ",*/vendor/*,*/node_modules/*"  " NERDTree | 
