mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
vim-patch:b5e7da1: runtime(doc): mention 'iskeyword' at :h charclass() (#31026)
fixes: vim/vim#15965
b5e7da1f27
Co-authored-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
2
runtime/doc/builtin.txt
generated
2
runtime/doc/builtin.txt
generated
@@ -936,7 +936,7 @@ charclass({string}) *charclass()*
|
|||||||
The character class is one of:
|
The character class is one of:
|
||||||
0 blank
|
0 blank
|
||||||
1 punctuation
|
1 punctuation
|
||||||
2 word character
|
2 word character (depends on 'iskeyword')
|
||||||
3 emoji
|
3 emoji
|
||||||
other specific Unicode class
|
other specific Unicode class
|
||||||
The class is used in patterns and word motions.
|
The class is used in patterns and word motions.
|
||||||
|
2
runtime/lua/vim/_meta/vimfn.lua
generated
2
runtime/lua/vim/_meta/vimfn.lua
generated
@@ -809,7 +809,7 @@ function vim.fn.char2nr(string, utf8) end
|
|||||||
--- The character class is one of:
|
--- The character class is one of:
|
||||||
--- 0 blank
|
--- 0 blank
|
||||||
--- 1 punctuation
|
--- 1 punctuation
|
||||||
--- 2 word character
|
--- 2 word character (depends on 'iskeyword')
|
||||||
--- 3 emoji
|
--- 3 emoji
|
||||||
--- other specific Unicode class
|
--- other specific Unicode class
|
||||||
--- The class is used in patterns and word motions.
|
--- The class is used in patterns and word motions.
|
||||||
|
@@ -1111,7 +1111,7 @@ M.funcs = {
|
|||||||
The character class is one of:
|
The character class is one of:
|
||||||
0 blank
|
0 blank
|
||||||
1 punctuation
|
1 punctuation
|
||||||
2 word character
|
2 word character (depends on 'iskeyword')
|
||||||
3 emoji
|
3 emoji
|
||||||
other specific Unicode class
|
other specific Unicode class
|
||||||
The class is used in patterns and word motions.
|
The class is used in patterns and word motions.
|
||||||
|
Reference in New Issue
Block a user