diff --git a/README.md b/README.md index 3ec4eaa..733292c 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,7 @@ smart people at [Hashrocket](http://hashrocket.com/). - [Coerce The Current Filetype](vim/coerce-the-current-filetype.md) - [Count the Number of Matches](vim/count-the-number-of-matches.md) - [Create A New File In A New Directory](vim/create-a-new-file-in-a-new-directory.md) +- [Edges Of The Selection](vim/edges-of-the-selection.md) - [End Of The Word](vim/end-of-the-word.md) - [Generate and Edit Rails Migration](vim/generate-and-edit-rails-migration.md) - [Head of File Name](vim/head-of-file-name.md) diff --git a/vim/edges-of-the-selection.md b/vim/edges-of-the-selection.md new file mode 100644 index 0000000..5e340ff --- /dev/null +++ b/vim/edges-of-the-selection.md @@ -0,0 +1,8 @@ +# Edges Of The Selection + +When you make a visual selection, Vim stores the position of the first +character of the selection in the `<` mark and the position of the last +character of the selection in the `>` mark. + +Thus moving to the edges of your previous selection is easy. To move to the +beginning of the selection, press `\`<`. To move to the end, press `\`>`.