mirror of
https://github.com/neovim/neovim.git
synced 2025-11-14 06:18:50 +00:00
API: nvim_create_buf: unset 'modeline' in scratch-buffer #12379
Although 'nomodeline' is not strictly part of the definition of a "scratch-buffer" it is obviously the right default.
This commit is contained in:
@@ -1808,7 +1808,7 @@ describe('API', function()
|
||||
eq({id=1}, meths.get_current_buf())
|
||||
end)
|
||||
|
||||
it("doesn't cause BufEnter or BufWinEnter autocmds", function()
|
||||
it("does not trigger BufEnter, BufWinEnter", function()
|
||||
command("let g:fired = v:false")
|
||||
command("au BufEnter,BufWinEnter * let g:fired = v:true")
|
||||
|
||||
@@ -1818,7 +1818,7 @@ describe('API', function()
|
||||
eq(false, eval('g:fired'))
|
||||
end)
|
||||
|
||||
it('|scratch-buffer|', function()
|
||||
it('scratch-buffer', function()
|
||||
eq({id=2}, meths.create_buf(false, true))
|
||||
eq({id=3}, meths.create_buf(true, true))
|
||||
eq({id=4}, meths.create_buf(true, true))
|
||||
@@ -1845,6 +1845,7 @@ describe('API', function()
|
||||
eq('nofile', meths.buf_get_option(b, 'buftype'))
|
||||
eq('hide', meths.buf_get_option(b, 'bufhidden'))
|
||||
eq(false, meths.buf_get_option(b, 'swapfile'))
|
||||
eq(false, meths.buf_get_option(b, 'modeline'))
|
||||
end
|
||||
|
||||
--
|
||||
@@ -1860,8 +1861,9 @@ describe('API', function()
|
||||
eq('nofile', meths.buf_get_option(edited_buf, 'buftype'))
|
||||
eq('hide', meths.buf_get_option(edited_buf, 'bufhidden'))
|
||||
eq(false, meths.buf_get_option(edited_buf, 'swapfile'))
|
||||
eq(false, meths.buf_get_option(edited_buf, 'modeline'))
|
||||
|
||||
-- scratch buffer can be wiped without error
|
||||
-- Scratch buffer can be wiped without error.
|
||||
command('bwipe')
|
||||
screen:expect([[
|
||||
^ |
|
||||
|
||||
Reference in New Issue
Block a user