aboutsummaryrefslogtreecommitdiff
path: root/vim-plugin/plugin/statix.vim
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-10-26 16:52:41 +0100
committerAkshay <[email protected]>2021-10-27 12:39:38 +0100
commitbfc720bf4d8adbb3b1eaff4f3556bc6d1e00849a (patch)
treed70767a31f3fb1978c2b2e932f7a83ea1eb87386 /vim-plugin/plugin/statix.vim
parent20d195988de1014517ff1a1c8c1041cff5f88e05 (diff)
allow stdin input to statix-singlevim-plugin
Diffstat (limited to 'vim-plugin/plugin/statix.vim')
-rw-r--r--vim-plugin/plugin/statix.vim14
1 files changed, 14 insertions, 0 deletions
diff --git a/vim-plugin/plugin/statix.vim b/vim-plugin/plugin/statix.vim
new file mode 100644
index 0000000..736cce2
--- /dev/null
+++ b/vim-plugin/plugin/statix.vim
@@ -0,0 +1,14 @@
1function! ApplyStatixSuggestion()
2 let l:l = line('.')
3 let l:c = col('.')
4 let l:filter = "%!statix single -p " . l . "," . c . ""
5 execute l:filter
6
7 silent if v:shell_error == 1
8 undo
9 endif
10
11 call cursor(l, c)
12endfunction
13
14nnoremap gf :call ApplyStatixSuggestion()<cr>