diff options
Diffstat (limited to 'ale_linters/d/dmd.vim')
-rw-r--r-- | ale_linters/d/dmd.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ale_linters/d/dmd.vim b/ale_linters/d/dmd.vim index 7068681b..bd3f9d55 100644 --- a/ale_linters/d/dmd.vim +++ b/ale_linters/d/dmd.vim @@ -31,7 +31,7 @@ function! ale_linters#d#dmd#DUBCommand(buffer) abort " To support older dub versions, we just change the directory to " the directory where we found the dub config, and then run `dub describe` " from that directory. - return 'cd ' . shellescape(fnamemodify(l:dub_file, ':h')) + return 'cd ' . ale#Escape(fnamemodify(l:dub_file, ':h')) \ . ' && dub describe --import-paths' endfunction @@ -42,7 +42,7 @@ function! ale_linters#d#dmd#DMDCommand(buffer, dub_output) abort for l:line in a:dub_output if !empty(l:line) " The arguments must be '-Ifilename', not '-I filename' - call add(l:import_list, '-I' . shellescape(l:line)) + call add(l:import_list, '-I' . ale#Escape(l:line)) endif endfor |