# HG changeset patch # User Richard Cheng # Date 1334141021 -3600 # Node ID f52bd8e7e36d9cddbeae95cb6f73b158d1700361 # Parent 5f0854fc2f0ca9222875db1cf70164124c08975b Remove unnecessary instruction We don't need to switch to file `foo` when we are already in file `foo`. diff -r 5f0854fc2f0c -r f52bd8e7e36d chapters/11.markdown --- a/chapters/11.markdown Thu Apr 05 13:19:51 2012 +0100 +++ b/chapters/11.markdown Wed Apr 11 11:43:41 2012 +0100 @@ -97,7 +97,7 @@ :nnoremap Q x :nnoremap Q dd -Now switch to file `foo` and type `Q`. What happens? +Now type `Q`. What happens? When you press `Q`, Vim will run the first mapping, not the second, because the first mapping is *more specific* than the second.