mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 21:55:17 -07:00
options: fix 'isident' for Windows
Default value on Windows does not match the documented value.
This commit is contained in:
parent
1123a979d0
commit
0d713fc8ba
@ -1271,7 +1271,11 @@ return {
|
||||
deny_duplicates=true,
|
||||
vi_def=true,
|
||||
varname='p_isi',
|
||||
defaults={if_true={vi="@,48-57,_,192-255"}}
|
||||
defaults={
|
||||
condition='WIN32',
|
||||
if_true={vi="@,48-57,_,128-167,224-235"},
|
||||
if_false={vi="@,48-57,_,192-255"}
|
||||
}
|
||||
},
|
||||
{
|
||||
full_name='iskeyword', abbreviation='isk',
|
||||
|
Loading…
Reference in New Issue
Block a user