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:
zeertzjq 2024-11-01 18:22:08 +08:00 committed by GitHub
parent cbd8b2c162
commit 7bf3a616e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -936,7 +936,7 @@ charclass({string}) *charclass()*
The character class is one of:
0 blank
1 punctuation
2 word character
2 word character (depends on 'iskeyword')
3 emoji
other specific Unicode class
The class is used in patterns and word motions.

View File

@ -809,7 +809,7 @@ function vim.fn.char2nr(string, utf8) end
--- The character class is one of:
--- 0 blank
--- 1 punctuation
--- 2 word character
--- 2 word character (depends on 'iskeyword')
--- 3 emoji
--- other specific Unicode class
--- The class is used in patterns and word motions.

View File

@ -1111,7 +1111,7 @@ M.funcs = {
The character class is one of:
0 blank
1 punctuation
2 word character
2 word character (depends on 'iskeyword')
3 emoji
other specific Unicode class
The class is used in patterns and word motions.