LunarVim/keys/which-key.vim

111 lines
4.9 KiB
VimL
Raw Normal View History

2020-05-09 06:36:34 +02:00
" map leader to which_key
" call which_key#register('<Space>', "g:which_key_map")
nnoremap <silent> <leader> :silent WhichKey ' '<CR>
2020-05-10 19:29:31 +02:00
vnoremap <silent> <leader> :silent WhichKeyVisual ' '<CR>
let g:which_key_map = {}
let g:which_key_sep = '→'
" set timeoutlen=100
2020-05-09 06:36:34 +02:00
" Not a fan of floating windows for this
let g:which_key_use_floating_win = 0
2020-05-10 19:29:31 +02:00
" Change the colors if you want
2020-05-09 06:36:34 +02:00
highlight default link WhichKey Operator
highlight default link WhichKeySeperator DiffAdded
highlight default link WhichKeyGroup Identifier
highlight default link WhichKeyDesc Function
" Hide status line
autocmd! FileType which_key
autocmd FileType which_key set laststatus=0 noshowmode noruler
2020-05-10 19:29:31 +02:00
\| autocmd BufLeave <buffer> set laststatus=2 noshowmode ruler
" f is for find
let g:which_key_map.f = {
\ 'name' : '+find' ,
\ '/' : [':History/' , 'history'],
\ ';' : [':Commands' , 'commands'],
\ 'a' : [':Ag' , 'text Ag'],
\ 'b' : [':BLines' , 'current buffer'],
\ 'B' : [':Buffers' , 'open buffers'],
\ 'c' : [':Commits' , 'commits'],
\ 'C' : [':BCommits' , 'buffer commits'],
\ 'f' : [':Files' , 'files'],
\ 'g' : [':GFiles' , 'git files'],
\ 'G' : [':GFiles?' , 'modified git files'],
\ 'h' : [':History' , 'file history'],
\ 'H' : [':History:' , 'command history'],
\ 'l' : [':Lines' , 'lines'] ,
\ 'm' : [':Marks' , 'marks'] ,
\ 'M' : [':Maps' , 'normal maps'] ,
\ 'p' : [':Helptags' , 'help tags'] ,
\ 'r' : [':Rg' , 'text Rg'],
\ 's' : [':Snippets' , 'snippets'],
\ 'S' : [':Colors' , 'color schemes'],
\ 't' : [':Tags' , 'project tags'],
\ 'T' : [':BTags' , 'buffer tags'],
\ 'w' : [':Windows' , 'search windows'],
\ 'y' : [':Filetypes' , 'file types'],
\ 'z' : [':FZF' , 'FZF'],
\ }
let g:fzf_buffers_jump = 1
" l is for language server protocol
let g:which_key_map.l = {
\ 'name' : '+lsp' ,
\ '.' : [':CocConfig' , 'config'],
\ ';' : ['<Plug>(coc-refactor)' , 'refactor'],
\ 'a' : ['<Plug>(coc-codeaction)' , 'line action'],
\ 'A' : ['<Plug>(coc-codeaction-selected)' , 'selected action'],
\ 'b' : [':CocNext' , 'next action'],
\ 'B' : [':CocPrev' , 'prev action'],
\ 'c' : [':CocList commands' , 'commands'],
\ 'd' : ['<Plug>(coc-definition)' , 'definition'],
\ 'D' : ['<Plug>(coc-declaration)' , 'declaration'],
\ 'e' : [':CocList extensions' , 'extensions'],
\ 'f' : ['<Plug>(coc-format-selected)' , 'format selected'],
\ 'F' : ['<Plug>(coc-format)' , 'format'],
\ 'h' : ['<Plug>(coc-float-hide)' , 'hide'],
\ 'i' : ['<Plug>(coc-implementation)' , 'implementation'],
\ 'I' : [':CocList diagnostics' , 'diagnostics'],
\ 'j' : ['<Plug>(coc-float-jump)' , 'float jump'],
\ 'l' : ['<Plug>(coc-codelens-action)' , 'code lens'],
\ 'n' : ['<Plug>(coc-diagnostic-next)' , 'next diagnostic'],
\ 'N' : ['<Plug>(coc-diagnostic-next-error)' , 'next error'],
\ 'o' : ['<Plug>(coc-openlink)' , 'open link'],
\ 'O' : [':CocList outline' , 'outline'],
\ 'p' : ['<Plug>(coc-diagnostic-prev)' , 'prev diagnostic'],
\ 'P' : ['<Plug>(coc-diagnostic-prev-error)' , 'prev error'],
\ 'q' : ['<Plug>(coc-fix-current)' , 'quickfix'],
\ 'r' : ['<Plug>(coc-rename)' , 'rename'],
\ 'R' : ['<Plug>(coc-references)' , 'references'],
\ 's' : [':CocList -I symbols' , 'references'],
\ 't' : ['<Plug>(coc-type-definition)' , 'type definition'],
\ 'u' : [':CocListResume' , 'resume list'],
\ 'U' : [':CocUpdate' , 'update CoC'],
2020-05-10 22:20:02 +02:00
\ 'v' : [':Vista!!' , 'tag viewer'],
2020-05-10 19:29:31 +02:00
\ 'z' : [':CocDisable' , 'disable CoC'],
\ 'Z' : [':CocEnable' , 'enable CoC'],
\ }
" t is for toggle
let g:which_key_map.t = {
\ 'name' : '+toggle' ,
2020-05-10 22:20:02 +02:00
\ 'c' : [':ColorizerToggle' , 'colorizer'],
2020-05-10 19:29:31 +02:00
\ 'e' : [':CocCommand explorer' , 'explorer'],
\ 'n' : [':set nonumber!' , 'line-numbers'],
2020-05-10 22:20:02 +02:00
\ 'r' : [':set norelativenumber!' , 'relative line nums'],
\ 's' : [':let @/ = ""' , 'remove search highlight'],
2020-05-10 19:29:31 +02:00
\ 't' : [':FloatermToggle' , 'terminal'],
2020-05-10 22:20:02 +02:00
\ 'v' : [':Vista!!' , 'tag viewer'],
2020-05-10 19:29:31 +02:00
\ }
call which_key#register('<Space>', "g:which_key_map")
2020-05-09 06:36:34 +02:00