diff --git a/README.md b/README.md index 1e32fb7..9da0a4b 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Alignment rules for the following delimiters have been crafted to meet the most ### Partial alignment in blockwise-visual mode In blockwise-visual mode (`CTRL-V`), EasyAlign aligns only the selected portions. -Consider the following case where you want to align `=>` operators. +Consider the following case where you want to align text around `=>` operators. ```ruby my_hash = { :a => 1, @@ -61,8 +61,10 @@ my_hash = { :a => 1, :aaa => 3 } ``` -In non-blockwise visual mode, `=` won't work because of the assignment operator in the first line. -So we instead enter blockwise-visual mode, and select text *around* `=>` operators, then press `=`. +In non-blockwise visual mode (`v` / `V`), `=` won't work since the assignment +operator in the first line gets in the way. +So we instead enter blockwise-visual mode (`CTRL-V`), and select the text *around* +`=>` operators, then press `=`. ```ruby my_hash = { :a => 1,