diff options
author | Teddy Wing | 2019-05-10 23:25:04 +0200 |
---|---|---|
committer | Teddy Wing | 2019-05-10 23:27:24 +0200 |
commit | 8a24622c84c884df3ca665ab8674565de567a390 (patch) | |
tree | 3c76b45c294030e2add3f001682650dbf54cf2b4 | |
parent | 5ca15b0fe76f5a30932afaaafed5bd27ca09da43 (diff) | |
download | dotvim-8a24622c84c884df3ca665ab8674565de567a390.tar.bz2 |
vimrc: Include hidden files in the Pick list
So that hidden project files can be opened quickly like the rest.
-rw-r--r-- | vimrc | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -413,6 +413,7 @@ " " 2019.05.10: " * Use long command line options to `ag` in `g:pick_command`. +" * Include hidden files in `g:pick_command`. " @@ -557,7 +558,7 @@ endif " ======= " pick -let g:pick_command = "ag --files-with-matches --all-types --path-to-ignore './.agignore' -g ''" +let g:pick_command = "ag --files-with-matches --all-types --hidden --path-to-ignore './.agignore' -g ''" function! PickBufferListCommand() let bufnrs = filter(range(1, bufnr("$")), 'buflisted(v:val)') |