diff options
Diffstat (limited to '')
-rw-r--r-- | autoload/elixir/util.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/autoload/elixir/util.vim b/autoload/elixir/util.vim index d6b6541a..04cb8375 100644 --- a/autoload/elixir/util.vim +++ b/autoload/elixir/util.vim @@ -1,4 +1,5 @@ if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'elixir') == -1 + function! elixir#util#get_filename(word) abort let word = a:word @@ -23,4 +24,5 @@ function! elixir#util#get_filename(word) abort return word endfunction + endif |