#254 Add a command for copying ALEInfo to your clipboard quickly

This commit is contained in:
w0rp
2017-02-14 23:45:22 +00:00
parent ed370667c8
commit 0131526261
2 changed files with 10 additions and 0 deletions

View File

@@ -107,3 +107,11 @@ function! ale#debugging#Info() abort
echom ''
call s:EchoCommandHistory()
endfunction
function! ale#debugging#InfoToClipboard() abort
redir @+>
silent call ale#debugging#Info()
redir END
echom 'ALEInfo copied to your clipboard'
endfunction