ALE stuff

This commit is contained in:
Anthony Cicchetti 2019-09-12 09:25:51 -04:00
parent cac9505707
commit 6869268ea4

View file

@ -80,9 +80,24 @@ nnoremap <leader>j <C-W><C-J>
nnoremap <leader>k <C-W><C-K>
nnoremap <leader>l <C-W><C-L>
"ALE Keymaps and options
nnoremap <silent> <leader><Space>a a<C-X><C-O>
nnoremap <silent> <leader><Space>g :ALEGoToDefinition<CR>
nnoremap <silent> <leader><Space>f :ALEFix<CR>
let g:ale_fixers = {
\ 'python': ['add_blank_lines_for_python_control_statements', 'yapf']
\ }
"which-key
let g:which_key_map = {}
let g:which_key_map = {}
autocmd! User vim-which-key call which_key#register('<Space>', 'g:which_key_map')
let g:which_key_map[' '] = {
\ 'name' : '+ale' ,
\ 'a' : 'completions' ,
\ 'g' : 'go-to-definition' ,
\ 'f' : 'fix' ,
\ }
call which_key#register('<Space>', "g:which_key_map")
nnoremap <silent> <leader> :<c-u>WhichKey '<Space>'<CR>
nnoremap <silent> <localleader> :<c-u>WhichKey ','<CR>