mirror of
https://github.com/neovim/neovim.git
synced 2024-12-23 20:55:18 -07: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:
parent
cbd8b2c162
commit
7bf3a616e1
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:
|
||||
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.
|
||||
|
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:
|
||||
--- 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.
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user