ALE stuff
This commit is contained in:
parent
cac9505707
commit
6869268ea4
1 changed files with 16 additions and 1 deletions
17
vim/vimrc
17
vim/vimrc
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue