diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-28 02:19:06 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-28 02:19:06 +0200 |
commit | 417df69667c1df5484d01ea766320324759d8718 (patch) | |
tree | f34979cb45d0148aec93d15d785699b8a6289a30 /autoload | |
parent | ae778bdb175f930b69facec5f3ccd1b95953bc88 (diff) | |
download | vim-polyglot-417df69667c1df5484d01ea766320324759d8718.tar.gz vim-polyglot-417df69667c1df5484d01ea766320324759d8718.zip |
Fix zsh missing filenames
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/sleuth.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/sleuth.vim b/autoload/sleuth.vim index 4c1ba5b8..d73e48bf 100644 --- a/autoload/sleuth.vim +++ b/autoload/sleuth.vim @@ -228,7 +228,7 @@ let s:globs = { \ 'zephir': '*.zep', \ 'zig': '*.zig,*.zir', \ 'zir': '*.zir', - \ 'zsh': '*.zsh,.zshrc,.zshenv,.zlogin,.zprofile,.zlogout', + \ 'zsh': '*.zsh,.zshrc,.zshenv,.zlogin,.zprofile,.zlogout,.zlog*,.zcompdump*,.zfbfmarks', \} func! sleuth#GlobForFiletype(type) |