Commit cb7c27d4 authored by Dom Sekotill's avatar Dom Sekotill
Browse files

Change the default file listing tool to list-files

NB: Really imaginative naming there: calling a file listing tool
'list-files' :-P
parent 1fec2a3c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -35,7 +35,9 @@ noremap <C-^> :b! #<CR>
" vim-ctrlspace plugin settings
set nocompatible
set hidden
if executable("ag")
if executable("list-files")
	let g:CtrlSpaceGlobCommand = 'list-files'
elseif executable("ag")
	let g:CtrlSpaceGlobCommand = 'ag -Ul --nocolor -g "" --hidden --ignore .git --ignore .svn --ignore .hg'
endif
let g:CtrlSpaceSaveWorkspaceOnSwitch = 1