mirror of
https://github.com/neovim/neovim.git
synced 2025-10-21 09:12:07 +00:00
fix(vim.opt): Fix #14668 Now correctly handles unescaped commas in isfname style
This commit is contained in:
@@ -2003,6 +2003,7 @@ describe('API', function()
|
||||
|
||||
it('should have information about window options', function()
|
||||
eq({
|
||||
allows_duplicates = true,
|
||||
commalist = false;
|
||||
default = "";
|
||||
flaglist = false;
|
||||
@@ -2020,6 +2021,7 @@ describe('API', function()
|
||||
|
||||
it('should have information about buffer options', function()
|
||||
eq({
|
||||
allows_duplicates = true,
|
||||
commalist = false,
|
||||
default = "",
|
||||
flaglist = false,
|
||||
@@ -2041,6 +2043,7 @@ describe('API', function()
|
||||
eq(false, meths.get_option'showcmd')
|
||||
|
||||
eq({
|
||||
allows_duplicates = true,
|
||||
commalist = false,
|
||||
default = true,
|
||||
flaglist = false,
|
||||
|
Reference in New Issue
Block a user