Skip to content

Commit

Permalink
Merge pull request #661 from Cupen/patch-1
Browse files Browse the repository at this point in the history
Fixed regex of `NERDTreeIgnore`.
  • Loading branch information
spf13 committed Aug 20, 2014
2 parents f5ecf32 + c0865eb commit 7f846ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@
nmap <leader>nt :NERDTreeFind<CR>
let NERDTreeShowBookmarks=1
let NERDTreeIgnore=['\.pyc', '\~$', '\.swo$', '\.swp$', '\.git', '\.hg', '\.svn', '\.bzr']
let NERDTreeIgnore=['\.py[cd]$', '\~$', '\.swo$', '\.swp$', '^\.git$', '^\.hg$', '^\.svn$', '\.bzr$']
let NERDTreeChDirMode=0
let NERDTreeQuitOnOpen=1
let NERDTreeMouseMode=2
Expand Down

0 comments on commit 7f846ae

Please sign in to comment.