diff options
author | w0rp <devw0rp@gmail.com> | 2017-02-14 23:45:22 +0000 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-02-14 23:45:22 +0000 |
commit | 01315262615eb3b111f05ea3e199d16663e5a901 (patch) | |
tree | 6297397e2c1b2e66f5fc7fc97dbad978c9ea0a9a /plugin/ale.vim | |
parent | ed370667c8f45a349ed76e4283593b13cfe68c44 (diff) | |
download | ale-01315262615eb3b111f05ea3e199d16663e5a901.zip |
#254 Add a command for copying ALEInfo to your clipboard quickly
Diffstat (limited to 'plugin/ale.vim')
-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 7074e468..13cbdce6 100644 --- a/plugin/ale.vim +++ b/plugin/ale.vim @@ -199,6 +199,8 @@ command! ALEToggle :call s:ALEToggle() " Define command to get information about current filetype. command! ALEInfo :call ale#debugging#Info() +" The same, but copy output to your clipboard. +command! ALEInfoToClipboard :call ale#debugging#InfoToClipboard() " <Plug> mappings for commands nnoremap <silent> <Plug>(ale_previous) :ALEPrevious<Return> |