ale
ale copied to clipboard
Set keywordprg rather than mapping <Space>
https://github.com/dense-analysis/ale/blob/14350dbb0d265ef87d1c7d420d89fb4165a2b131/ftplugin/ale-info.vim#L16
Mapping space interferes with user mappings beginning with space. The standard way to set "help" is to use keywordprg. In this case, I suggest
command -buffer -nargs=* ALEHelp call ALEInfoOpenHelp()
setlocal keywordprg=:ALEHelp
Interesting. I'll give it a try.