Skip to content

Commit

Permalink
Merge pull request elixir-editors#543 from lukebakken/lukebakken/cust…
Browse files Browse the repository at this point in the history
…omizations

Recursively search directories for files
  • Loading branch information
jbodah authored Apr 21, 2021
2 parents 294a22c + d0b9b3a commit c3cb96e
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ftplugin/elixir.vim
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,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)
Expand Down

0 comments on commit c3cb96e

Please sign in to comment.