summaryrefslogtreecommitdiffstats
path: root/runtime/doc/editing.txt
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-10-26 21:12:46 +0100
committerBram Moolenaar <Bram@vim.org>2020-10-26 21:12:46 +0100
commitcb80aa2d53e56d3aba3b3c439fb467f29a750c5e (patch)
treeac7c6764b40181dc3ef300510213e0f208329a31 /runtime/doc/editing.txt
parent8133cc6bf454eb90bb0868f7cf806fce5c0c9fe6 (diff)
Update runtime files.
Diffstat (limited to 'runtime/doc/editing.txt')
-rw-r--r--runtime/doc/editing.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/runtime/doc/editing.txt b/runtime/doc/editing.txt
index 9b9adf65a5..ab2219de85 100644
--- a/runtime/doc/editing.txt
+++ b/runtime/doc/editing.txt
@@ -1,4 +1,4 @@
-*editing.txt* For Vim version 8.2. Last change: 2020 Aug 17
+*editing.txt* For Vim version 8.2. Last change: 2020 Oct 23
VIM REFERENCE MANUAL by Bram Moolenaar
@@ -73,10 +73,14 @@ g CTRL-G Prints the current position of the cursor in five
ways: Column, Line, Word, Character and Byte. If the
number of Characters and Bytes is the same then the
Character position is omitted.
+
If there are characters in the line that take more
than one position on the screen (<Tab> or special
- character), both the "real" column and the screen
- column are shown, separated with a dash.
+ character), or characters using more than one byte per
+ column (characters above 0x7F when 'encoding' is
+ utf-8), both the byte column and the screen column are
+ shown, separated by a dash.
+
Also see the 'ruler' option and the |wordcount()|
function.