C-x = Controle+x
M-x = Alt+x (ou également Escape, x sous Emacs)
S-x = Shift+x
Quoi? | Vim | Emacs |
Bases | ||
Ouvrir | :n fic | C-XF fic |
Sauver | :w (fic) | C-XS |
Quitter | :q(!) | C-XC |
Copier-coller | ||
Sélection | C-V , Escape a la fin | C-Space |
Tout sélectionner | ggyG | C-XH |
Couper | d(nb_mot)W , d(nb_ligne)d | C-W |
Couper ligne | dd | C-K |
Copier | y(nb_mot)W , y(nb_ligne)y | M-W |
Coller | p , P | C-Y |
Fenetres | ||
New - couper horizontalement | C-WN | C-X2 |
New - couper verticalement | C-WV | C-X3 |
Close | :q | C-X1, C-XK |
Suivante | C-WW , C-WP , C-Wfleche | C-XB , C-XC-B |
Recherche | ||
mot | /mot , n , N | C-Smot , C-Rmot |
ligne | :num_ligne | M-Gnum_ligne |
Debut fichier | gg | M-< |
Fin fichier | G | M-> |
Debut ligne | 0 | C-A |
Fin ligne | $ | C-E |
Character | t<char> | |
Mot suivant | (nb)w , (nb)W , S-fleches | C-fleches |
Remplacer | (%)s/mot1/mot2/g | M-% mot1 mot2 |
Spécial | ||
Annuler | (nb)u | C-_ , C-/ |
Incrémenter un nombre | C-A | |
Décrémenter un nombre | C-X | |
Voir les bindage | :map | C-XC-H (+aide) |
Aide | :help (cmd) | C-HI |
Réindentation | =<nb>= , =G , (nb)gq(flèches,G,...) | Sélection puis M-x indent-region |
Complétion | C-N,C-P | M-/ |
Rectangles | nb_ligne:cmd | Sélection puis C-XR(k,t,...) |
Compiler | :!make | M-X compile |
Exécuter | :!cmd | M-X shell |
map <C-F4> :tabclose<CR> map <C-N> :tabnew<CR>
. | any character except new line |
\s | whitespace character |
\S | non-whitespace character |
\d | digit |
\D | non-digit |
\x | hex digit |
\X | non-hex digit |
\o | octal digit |
\O | non-octal digit |
\h | head of word character (a,b,c...z,A,B,C...Z and _) |
\H | non-head of word character |
\p | printable character |
\P | like \p, but excluding digits |
\w | word character |
\W | non-word character |
\a | alphabetic character |
\A | non-alphabetic character |
\l | lowercase character |
\L | non-lowercase character |
\u | uppercase character |
\U | non-uppercase character |
* | matches 0 or more of the preceding characters |
\+ | matches 1 or more of the preceding characters... |
\= | matches 0 or 1 more of the preceding characters... |
\{n,m} | matches from n to m of the preceding characters... |
\{n} | matches exactly n times of the preceding characters... |
\{,m} | matches at most m (from 0 to m) of the preceding characters... |
\{n,} | matches at least n of of the preceding characters... |