A vim plugin just to open and close a help window a little bit readily.
<Plug>(helpkun_close)
closes the help window in your current tab.<Plug>(helpkun_open_on_cursor)
tries to open the help item on your cursor.
Map <Plug>(helpkun_close)
and <Plug>(helpkun_open_on_cursor)
like
nmap <Leader>ch <Plug>(helpkun_close)
nmap <Leader>oh <Plug>(helpkun_open_on_cursor)
or
command! CH execute "normal \<Plug>(helpkun_close)"
command! OH execute "normal \<Plug>(helpkun_open_on_cursor)"
.
MIT