mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-08 05:24:46 +08:00
fix indent
This commit is contained in:
@@ -65,11 +65,11 @@ endfunction
|
|||||||
" Output 'cd <directory> && '
|
" Output 'cd <directory> && '
|
||||||
" This function can be used changing the directory for a linter command.
|
" This function can be used changing the directory for a linter command.
|
||||||
function! ale#path#CdString(directory) abort
|
function! ale#path#CdString(directory) abort
|
||||||
if has('win32')
|
if has('win32')
|
||||||
return 'cd /d ' . ale#Escape(a:directory) . ' && '
|
return 'cd /d ' . ale#Escape(a:directory) . ' && '
|
||||||
else
|
else
|
||||||
return 'cd ' . ale#Escape(a:directory) . ' && '
|
return 'cd ' . ale#Escape(a:directory) . ' && '
|
||||||
endif
|
endif
|
||||||
endfunction
|
endfunction
|
||||||
|
|
||||||
" Output 'cd <buffer_filename_directory> && '
|
" Output 'cd <buffer_filename_directory> && '
|
||||||
|
|||||||
Reference in New Issue
Block a user