diff options
author | Bram Moolenaar <Bram@vim.org> | 2016-02-15 22:07:32 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2016-02-15 22:07:32 +0100 |
commit | 38a55639d603823efcf2d2fdf542dbffdeb60b75 (patch) | |
tree | caf0a634ab061f45cb038e1ef179eab58ac6b902 /runtime/doc/change.txt | |
parent | d807036d10615b960c814ef3890ecad335b57f56 (diff) | |
download | vim-git-38a55639d603823efcf2d2fdf542dbffdeb60b75.tar.gz |
Update runtime files.
Diffstat (limited to 'runtime/doc/change.txt')
-rw-r--r-- | runtime/doc/change.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/runtime/doc/change.txt b/runtime/doc/change.txt index ad80a3781..ae8f4c6e2 100644 --- a/runtime/doc/change.txt +++ b/runtime/doc/change.txt @@ -1,4 +1,4 @@ -*change.txt* For Vim version 7.4. Last change: 2016 Jan 31 +*change.txt* For Vim version 7.4. Last change: 2016 Feb 10 VIM REFERENCE MANUAL by Bram Moolenaar @@ -98,10 +98,10 @@ These commands delete text. You can repeat them with the `.` command An exception for the d{motion} command: If the motion is not linewise, the start and end of the motion are not in the same line, and there are only -blanks before the start and after the end of the motion, the delete becomes -linewise. This means that the delete also removes the line of blanks that you -might expect to remain. Use the |o_v| operator to force the motion to be -characterwise. +blanks before the start and there are no non-blanks after the end of the +motion, the delete becomes linewise. This means that the delete also removes +the line of blanks that you might expect to remain. Use the |o_v| operator to +force the motion to be characterwise. Trying to delete an empty region of text (e.g., "d0" in the first column) is an error when 'cpoptions' includes the 'E' flag. |