summaryrefslogtreecommitdiff
path: root/plugin
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2018-04-08 19:04:07 +0100
committerw0rp <devw0rp@gmail.com>2018-04-08 19:04:07 +0100
commit7cf3ddf6c4354db406a19104f352565d42a827d2 (patch)
treee9cf7c8d3fffaf2f12abe0d86305744591fbd717 /plugin
parent1123669839c1656deb20f433fc672ca0abdda705 (diff)
downloadale-7cf3ddf6c4354db406a19104f352565d42a827d2.zip
Close #1439 - Add an :ALEInfoToFile command
Diffstat (limited to 'plugin')
-rw-r--r--plugin/ale.vim2
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()