summaryrefslogtreecommitdiff
path: root/autoload/ale/fixers/fish_indent.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/ale/fixers/fish_indent.vim')
-rw-r--r--autoload/ale/fixers/fish_indent.vim19
1 files changed, 19 insertions, 0 deletions
diff --git a/autoload/ale/fixers/fish_indent.vim b/autoload/ale/fixers/fish_indent.vim
new file mode 100644
index 00000000..ebf17c5a
--- /dev/null
+++ b/autoload/ale/fixers/fish_indent.vim
@@ -0,0 +1,19 @@
+" Author: Chen YuanYuan <cyyever@outlook.com>
+" Description: Integration of fish_indent with ALE.
+
+call ale#Set('fish_fish_indent_executable', 'fish_indent')
+call ale#Set('fish_fish_indent_options', '')
+
+function! ale#fixers#fish_indent#Fix(buffer) abort
+ let l:executable = ale#Var(a:buffer, 'fish_fish_indent_executable')
+ let l:options = ale#Var(a:buffer, 'fish_fish_indent_options')
+ let l:filename = ale#Escape(bufname(a:buffer))
+
+ return {
+ \ 'command': ale#Escape(l:executable)
+ \ . ' -w '
+ \ . (empty(l:options) ? '' : ' ' . l:options)
+ \ . ' %t',
+ \ 'read_temporary_file': 1,
+ \}
+endfunction