mirror of
https://github.com/amix/vimrc
synced 2025-08-03 03:34:59 +08:00
Updated plugins
This commit is contained in:
22
sources_non_forked/ale/ftplugin/ale-info.vim
Normal file
22
sources_non_forked/ale/ftplugin/ale-info.vim
Normal file
@ -0,0 +1,22 @@
|
||||
" Close the ALEInfo preview window with the q key.
|
||||
noremap <buffer> q :q!<CR>
|
||||
|
||||
" Explicitly use the default synmaxcol for ale-info.
|
||||
setlocal synmaxcol=3000
|
||||
|
||||
function! ALEInfoOpenHelp() abort
|
||||
let l:variable = matchstr(getline('.'), '\v[gb]:ale_[a-z0-9_]+')
|
||||
|
||||
if !empty(l:variable)
|
||||
execute('help ' . l:variable)
|
||||
endif
|
||||
endfunction
|
||||
|
||||
" Press space to open :help for an ALE Variable
|
||||
nnoremap <buffer> <silent> <space> :call ALEInfoOpenHelp()<CR>
|
||||
|
||||
let b:undo_ftplugin = get(b:, 'undo_ftplugin', 'execute')
|
||||
let b:undo_ftplugin .= ' | setlocal synmaxcol<'
|
||||
let b:undo_ftplugin .= ' | execute "silent! unmap <buffer> q"'
|
||||
let b:undo_ftplugin .= ' | execute "silent! nunmap <buffer> <space>"'
|
||||
let b:undo_ftplugin .= ' | delfunction! ALEInfoOpenHelp'
|
Reference in New Issue
Block a user