summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/lua/vim/_meta/vimfn.lua
diff options
context:
space:
mode:
Diffstat (limited to 'runtime/lua/vim/_meta/vimfn.lua')
-rw-r--r--runtime/lua/vim/_meta/vimfn.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/runtime/lua/vim/_meta/vimfn.lua b/runtime/lua/vim/_meta/vimfn.lua
index 830882c9c1..2773d17546 100644
--- a/runtime/lua/vim/_meta/vimfn.lua
+++ b/runtime/lua/vim/_meta/vimfn.lua
@@ -10711,9 +10711,9 @@ function vim.fn.utf16idx(string, idx, countcc, charidx) end
function vim.fn.values(dict) end
--- The result is a Number, which is the screen column of the file
---- position given with {expr}. That is, the last screen position
---- occupied by the character at that position, when the screen
---- would be of unlimited width. When there is a <Tab> at the
+--- position given with {expr}. That is, the total number of
+--- screen cells occupied by the part of the line until the end of
+--- the character at that position. When there is a <Tab> at the
--- position, the returned Number will be the column at the end of
--- the <Tab>. For example, for a <Tab> in column 1, with 'ts'
--- set to 8, it returns 8. |conceal| is ignored.