correction avec le c-l

This commit is contained in:
bastien 2024-04-09 22:36:12 +02:00
parent 952e85032e
commit aeb88394ca

View file

@ -42,6 +42,8 @@ set cursorline
set ignorecase
set hlsearch
set mouse=a
set expandtab
set tabstop=2
" Configurer Airline
set laststatus=2
@ -196,22 +198,22 @@ let g:startify_custom_header =
" Configuration WhichKey
call which_key#register('<Space>', "g:which_key_map")
nnoremap <silent> <c-l> :<c-u>WhichKey '<Space>'<CR>
nnoremap <c-l> :WhichKey '<Space>'<CR>
set timeoutlen=20
let g:which_key_map = {
\ 'name' : 'Raccourcis VimsCode' ,
\ '<F2>' : ['<C-W>w' , 'fait apparaitre une note'] ,
\ '<F3>' : ['<C-W>c' , 'fait apparaitre l arborescence'] ,
\ '<F4>' : ['<C-W>s' , 'historique de modification'] ,
\ '<F5>' : ['<C-W>v' , 'fait apparaitre un terminal'] ,
\ '<F5> souris' : ['<C-W>f' , 'redimensionnable avec la souris'] ,
\ '<F6>' : ['<C-W>v' , 'scroll dans le terminal'] ,
\ '<F7>' : ['<C-W>h' , 'fait apparaitre un site aide'] ,
\ '<F8>' : ['<C-W>j' , 'créer/ouvre une nouvel fenetre'] ,
\ '<F9>' : ['<C-W>l' , 'change de fenetre'] ,
\ '<F10>' : ['<C-W>5<' , 'ferme VimsCode'] ,
\ 'Ctrl-a' : [':resize +5' , 'divise en deux vim'] ,
\ '²' : ['<C-W>5>' , 'affiche les greffons'] ,
\ '<F2>' : ['<F2>' , 'fait apparaitre une note'] ,
\ '<F3>' : ['<F3>' , 'fait apparaitre l arborescence'] ,
\ '<F4>' : ['<F4>' , 'historique de modification'] ,
\ '<F5>' : ['<F5>' , 'fait apparaitre un terminal'] ,
\ '<F5> souris' : ['' , 'redimensionnable avec la souris'] ,
\ '<F6>' : ['' , 'scroll dans le terminal'] ,
\ '<F7>' : ['<F7>' , 'fait apparaitre un site aide'] ,
\ '<F8>' : ['<F8>' , 'créer/ouvre une nouvel fenetre'] ,
\ '<F9>' : ['<<F9>' , 'change de fenetre'] ,
\ '<F10>' : ['<F10>' , 'ferme VimsCode'] ,
\ 'Ctrl-a' : ['<c-a>' , 'divise en deux vim'] ,
\ '²' : ['²' , 'affiche les greffons'] ,
\ }
let g:which_key_map.a = {
\ 'name' : 'Raccourcis Vim' ,
@ -227,3 +229,4 @@ let g:which_key_map.a = {
\ ':resize -5' : [':resize -5' , 'expand-window-up'] ,
\ 'Ctrl-w-=' : ['<C-W>=' , 'balance-window'] ,
\ }