diff options
author | paihu <paihu@users.noreply.github.com> | 2018-10-22 23:42:50 +0900 |
---|---|---|
committer | paihu <paihu@users.noreply.github.com> | 2018-10-22 23:42:50 +0900 |
commit | bc3ccd6e042fb623e6a34d5184839aa1f1518f32 (patch) | |
tree | 81f68fbaa7c8b5927068ec7f261253b09e4273fb /autoload | |
parent | 2ea83939a5978fbe5f709b7a1ab0212e4a0fae45 (diff) | |
download | ale-bc3ccd6e042fb623e6a34d5184839aa1f1518f32.zip |
fix indent
Diffstat (limited to 'autoload')
-rw-r--r-- | autoload/ale/path.vim | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/autoload/ale/path.vim b/autoload/ale/path.vim index 6d804459..89b119f4 100644 --- a/autoload/ale/path.vim +++ b/autoload/ale/path.vim @@ -65,11 +65,11 @@ endfunction " Output 'cd <directory> && ' " This function can be used changing the directory for a linter command. function! ale#path#CdString(directory) abort - if has('win32') - return 'cd /d ' . ale#Escape(a:directory) . ' && ' - else - return 'cd ' . ale#Escape(a:directory) . ' && ' - endif + if has('win32') + return 'cd /d ' . ale#Escape(a:directory) . ' && ' + else + return 'cd ' . ale#Escape(a:directory) . ' && ' + endif endfunction " Output 'cd <buffer_filename_directory> && ' |