diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2021-06-01 18:17:40 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2021-06-01 18:17:40 +0200 |
commit | af0eaee01737d26314c9c3618153e99d1eb3e2f1 (patch) | |
tree | e45903bbc85886dcb6568c1f3c3f867b2649f2ca /ftplugin/elixir.vim | |
parent | 730dcb02caab60a6ae5d8b4bdc16d290041061ec (diff) | |
download | vim-polyglot-af0eaee01737d26314c9c3618153e99d1eb3e2f1.tar.gz vim-polyglot-af0eaee01737d26314c9c3618153e99d1eb3e2f1.zip |
Update
Diffstat (limited to 'ftplugin/elixir.vim')
-rw-r--r-- | ftplugin/elixir.vim | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/ftplugin/elixir.vim b/ftplugin/elixir.vim index 4ab896db..cd25464a 100644 --- a/ftplugin/elixir.vim +++ b/ftplugin/elixir.vim @@ -25,10 +25,11 @@ setlocal commentstring=#\ %s let &l:path = \ join([ - \ 'lib', - \ 'src', - \ 'deps/**/lib', - \ 'deps/**/src', + \ 'lib/**', + \ 'src/**', + \ 'test/**', + \ 'deps/**/lib/**', + \ 'deps/**/src/**', \ &g:path \ ], ',') setlocal includeexpr=elixir#util#get_filename(v:fname) |