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>