diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2022-03-07 14:43:44 +0100 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2022-03-07 14:43:44 +0100 |
commit | cbcab8684e06379c9f5c51cfc9cac68d8684fe0c (patch) | |
tree | d03b04e9a7f8e3aae70e590953408f90deed077c /old/vimrc.bepo | |
parent | 721a7ea65d23e7b149ba73968a1d75727a55b390 (diff) | |
download | vim-cbcab8684e06379c9f5c51cfc9cac68d8684fe0c.zip vim-cbcab8684e06379c9f5c51cfc9cac68d8684fe0c.tar.gz |
move to old
Diffstat (limited to 'old/vimrc.bepo')
-rw-r--r-- | old/vimrc.bepo | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/old/vimrc.bepo b/old/vimrc.bepo new file mode 100644 index 0000000..0331e8b --- /dev/null +++ b/old/vimrc.bepo @@ -0,0 +1,82 @@ +" {W} -> [É] +" —————————— +" On remappe W sur É : +noremap é w +noremap É W +" Corollaire, pour effacer/remplacer un mot quand on n’est pas au début (daé / +" laé). +" (attention, cela diminue la réactivité du {A}…) +noremap aé aw +noremap aÉ aW +" Pour faciliter les manipulations de fenêtres, on utilise {W} comme un +" Ctrl+W : +noremap w <C-w> +noremap W <C-w><C-w> + +" [HJKL] -> {CTSR} +" ———————————————— +" {cr} = « gauche / droite » +noremap c h +noremap r l +" {ts} = « haut / bas » +noremap t j +noremap s k +" {CR} = « haut / bas de l'écran » +noremap C H +noremap R L +" {TS} = « joindre / aide » + noremap T J + noremap S K +" Corollaire : repli suivant / précédent + noremap zs zj + noremap zt zk + +" {HJKL} <- [CTSR] +" ———————————————— +" {J} = « Jusqu'à » (j = suivant, J = précédant) +noremap j t +noremap J T +" {L} = « Change » (l = attend un mvt, L = jusqu'à la fin de ligne) +noremap l c +noremap L C +" {H} = « Remplace » (h = un caractère slt, H = reste en « Remplace ») +noremap h r +noremap H R +" {K} = « Substitue » (k = caractère, K = ligne) +noremap k s +noremap K S +" Corollaire : correction orthographique +noremap ]k ]s +noremap [k [s + +" Désambiguation de {g} +" ————————————————————— +" ligne écran précédente / suivante (à l'intérieur d'une phrase) +noremap gs gk +noremap gt gj +" onglet précédant / suivant +noremap gb gT +noremap gé gt +" optionnel : {gB} / {gÉ} pour aller au premier / dernier onglet +noremap gB :exe "silent! tabfirst"<CR> +noremap gÉ :exe "silent! tablast"<CR> +" optionnel : {g"} pour aller au début de la ligne écran +noremap g" g0 + +" <> en direct +" ———————————— +noremap « < +noremap » > + +" Remaper la gestion des fenêtres +" ——————————————————————————————— +noremap wt <C-w>j +noremap ws <C-w>k +noremap wc <C-w>h +noremap wr <C-w>l +noremap wd <C-w>c +noremap wo <C-w>s +noremap wp <C-w>o +noremap w<SPACE> :split<CR> +noremap w<CR> :vsplit<CR> + |