diff --git a/multi/blog/Learn-Vim-Progressively.md b/multi/blog/Learn-Vim-Progressively.md index 112cca4f3..15330292c 100644 --- a/multi/blog/Learn-Vim-Progressively.md +++ b/multi/blog/Learn-Vim-Progressively.md @@ -428,7 +428,7 @@ fr: ### Sélection de blocs rectangulaires : ``. en: Rectangular blocks are very useful for commenting many lines of code. en: Typically: `0I-- [ESC]` en: -en: - `^` → go to start of the line +en: - `^` → go to the first non-blank character of the line en: - `` → Start block selection en: - `` → move down (could also be `jjj` or `%`, etc...) en: - `I-- [ESC]` → write `-- ` to comment each line @@ -436,7 +436,7 @@ en: - `I-- [ESC]` → write `-- ` to comment each line fr: Les blocs rectangulaires sont très commodes pour commenter plusieurs lignes de codes. fr: Typiquement: `^I-- [ESC]` fr: -fr: - `^` → aller en début de ligne +fr: - `^` → aller au premier caractère de la ligne fr: - `` → Commencer la sélection du bloc fr: - `` → se déplacer vers le bas (pourrait être `jjj` ou `%` etc...) fr: - `I-- [ESC]` → écrit `-- ` pour commenter le reste de la ligne.