diff options
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/ale.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugin/ale.vim b/plugin/ale.vim index 1aa35826..56d5c447 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -259,6 +259,8 @@ command! -bar ALELint :call ale#Queue(0, 'lint_file') command! -bar ALEInfo :call ale#debugging#Info() " The same, but copy output to your clipboard. command! -bar ALEInfoToClipboard :call ale#debugging#InfoToClipboard() +" Copy ALE information to a file. +command! -bar -nargs=1 ALEInfoToFile :call ale#debugging#InfoToFile(<f-args>) " Fix problems in files. command! -bar ALEFix :call ale#fix#Fix() |