2016-04-23 16:53:11 -07:00
|
|
|
local helpers = require('test.functional.helpers')(after_each)
|
2019-03-04 09:53:41 -07:00
|
|
|
local Screen = require('test.functional.ui.screen')
|
2016-03-12 09:07:17 -07:00
|
|
|
local clear, nvim, buffer = helpers.clear, helpers.nvim, helpers.buffer
|
|
|
|
local curbuf, curwin, eq = helpers.curbuf, helpers.curwin, helpers.eq
|
|
|
|
local curbufmeths, ok = helpers.curbufmeths, helpers.ok
|
2022-11-14 03:01:35 -07:00
|
|
|
local describe_lua_and_rpc = helpers.describe_lua_and_rpc(describe)
|
2019-03-04 09:53:41 -07:00
|
|
|
local meths = helpers.meths
|
2016-07-29 15:39:09 -07:00
|
|
|
local funcs = helpers.funcs
|
|
|
|
local request = helpers.request
|
2017-01-27 05:09:33 -07:00
|
|
|
local exc_exec = helpers.exc_exec
|
2022-08-05 15:22:01 -07:00
|
|
|
local exec_lua = helpers.exec_lua
|
2017-04-08 14:12:26 -07:00
|
|
|
local feed_command = helpers.feed_command
|
2017-01-27 05:09:33 -07:00
|
|
|
local insert = helpers.insert
|
2016-09-14 02:17:07 -07:00
|
|
|
local NIL = helpers.NIL
|
2017-02-22 15:34:25 -07:00
|
|
|
local command = helpers.command
|
2017-04-10 16:24:37 -07:00
|
|
|
local bufmeths = helpers.bufmeths
|
2019-03-04 09:53:41 -07:00
|
|
|
local feed = helpers.feed
|
2019-09-03 13:51:45 -07:00
|
|
|
local pcall_err = helpers.pcall_err
|
2014-10-08 09:56:01 -07:00
|
|
|
|
2016-10-22 15:02:22 -07:00
|
|
|
describe('api/buf', function()
|
2014-10-08 09:56:01 -07:00
|
|
|
before_each(clear)
|
|
|
|
|
2016-06-28 12:45:19 -07:00
|
|
|
-- access deprecated functions
|
|
|
|
local function curbuf_depr(method, ...)
|
|
|
|
return request('buffer_'..method, 0, ...)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('nvim_buf_set_lines, nvim_buf_line_count', function()
|
|
|
|
it('deprecated forms', function()
|
2016-06-28 12:45:19 -07:00
|
|
|
eq(1, curbuf_depr('line_count'))
|
|
|
|
curbuf_depr('insert', -1, {'line'})
|
|
|
|
eq(2, curbuf_depr('line_count'))
|
|
|
|
curbuf_depr('insert', -1, {'line'})
|
|
|
|
eq(3, curbuf_depr('line_count'))
|
|
|
|
curbuf_depr('del_line', -1)
|
|
|
|
eq(2, curbuf_depr('line_count'))
|
|
|
|
curbuf_depr('del_line', -1)
|
|
|
|
curbuf_depr('del_line', -1)
|
2014-10-08 09:56:01 -07:00
|
|
|
-- There's always at least one line
|
2016-06-28 12:45:19 -07:00
|
|
|
eq(1, curbuf_depr('line_count'))
|
2014-10-08 09:56:01 -07:00
|
|
|
end)
|
|
|
|
|
2019-05-07 00:17:05 -07:00
|
|
|
it('cursor position is maintained after lines are inserted #9961', function()
|
|
|
|
-- replace the buffer contents with these three lines.
|
|
|
|
request('nvim_buf_set_lines', 0, 0, -1, 1, {"line1", "line2", "line3", "line4"})
|
|
|
|
-- Set the current cursor to {3, 2}.
|
|
|
|
curwin('set_cursor', {3, 2})
|
|
|
|
|
|
|
|
-- add 2 lines and delete 1 line above the current cursor position.
|
|
|
|
request('nvim_buf_set_lines', 0, 1, 2, 1, {"line5", "line6"})
|
|
|
|
-- check the current set of lines in the buffer.
|
|
|
|
eq({"line1", "line5", "line6", "line3", "line4"}, buffer('get_lines', 0, 0, -1, 1))
|
|
|
|
-- cursor should be moved below by 1 line.
|
|
|
|
eq({4, 2}, curwin('get_cursor'))
|
|
|
|
|
|
|
|
-- add a line after the current cursor position.
|
|
|
|
request('nvim_buf_set_lines', 0, 5, 5, 1, {"line7"})
|
|
|
|
-- check the current set of lines in the buffer.
|
|
|
|
eq({"line1", "line5", "line6", "line3", "line4", "line7"}, buffer('get_lines', 0, 0, -1, 1))
|
|
|
|
-- cursor position is unchanged.
|
|
|
|
eq({4, 2}, curwin('get_cursor'))
|
|
|
|
|
|
|
|
-- overwrite current cursor line.
|
|
|
|
request('nvim_buf_set_lines', 0, 3, 5, 1, {"line8", "line9"})
|
|
|
|
-- check the current set of lines in the buffer.
|
|
|
|
eq({"line1", "line5", "line6", "line8", "line9", "line7"}, buffer('get_lines', 0, 0, -1, 1))
|
|
|
|
-- cursor position is unchanged.
|
|
|
|
eq({4, 2}, curwin('get_cursor'))
|
|
|
|
|
|
|
|
-- delete current cursor line.
|
|
|
|
request('nvim_buf_set_lines', 0, 3, 5, 1, {})
|
|
|
|
-- check the current set of lines in the buffer.
|
|
|
|
eq({"line1", "line5", "line6", "line7"}, buffer('get_lines', 0, 0, -1, 1))
|
|
|
|
-- cursor position is unchanged.
|
|
|
|
eq({4, 2}, curwin('get_cursor'))
|
|
|
|
end)
|
|
|
|
|
2018-06-28 18:32:05 -07:00
|
|
|
it('line_count has defined behaviour for unloaded buffers', function()
|
|
|
|
-- we'll need to know our bufnr for when it gets unloaded
|
|
|
|
local bufnr = curbuf('get_number')
|
|
|
|
-- replace the buffer contents with these three lines
|
|
|
|
request('nvim_buf_set_lines', bufnr, 0, -1, 1, {"line1", "line2", "line3", "line4"})
|
|
|
|
-- check the line count is correct
|
|
|
|
eq(4, request('nvim_buf_line_count', bufnr))
|
|
|
|
-- force unload the buffer (this will discard changes)
|
|
|
|
command('new')
|
|
|
|
command('bunload! '..bufnr)
|
|
|
|
-- line count for an unloaded buffer should always be 0
|
|
|
|
eq(0, request('nvim_buf_line_count', bufnr))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('get_lines has defined behaviour for unloaded buffers', function()
|
|
|
|
-- we'll need to know our bufnr for when it gets unloaded
|
|
|
|
local bufnr = curbuf('get_number')
|
|
|
|
-- replace the buffer contents with these three lines
|
|
|
|
buffer('set_lines', bufnr, 0, -1, 1, {"line1", "line2", "line3", "line4"})
|
|
|
|
-- confirm that getting lines works
|
|
|
|
eq({"line2", "line3"}, buffer('get_lines', bufnr, 1, 3, 1))
|
|
|
|
-- force unload the buffer (this will discard changes)
|
|
|
|
command('new')
|
|
|
|
command('bunload! '..bufnr)
|
|
|
|
-- attempting to get lines now always gives empty list
|
|
|
|
eq({}, buffer('get_lines', bufnr, 1, 3, 1))
|
|
|
|
-- it's impossible to get out-of-bounds errors for an unloaded buffer
|
|
|
|
eq({}, buffer('get_lines', bufnr, 8888, 9999, 1))
|
|
|
|
end)
|
|
|
|
end)
|
2014-10-08 09:56:01 -07:00
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('deprecated: {get,set,del}_line', function()
|
2014-10-08 09:56:01 -07:00
|
|
|
it('works', function()
|
2016-06-28 12:45:19 -07:00
|
|
|
eq('', curbuf_depr('get_line', 0))
|
|
|
|
curbuf_depr('set_line', 0, 'line1')
|
|
|
|
eq('line1', curbuf_depr('get_line', 0))
|
|
|
|
curbuf_depr('set_line', 0, 'line2')
|
|
|
|
eq('line2', curbuf_depr('get_line', 0))
|
|
|
|
curbuf_depr('del_line', 0)
|
|
|
|
eq('', curbuf_depr('get_line', 0))
|
2014-10-08 09:56:01 -07:00
|
|
|
end)
|
2014-10-24 11:23:17 -07:00
|
|
|
|
2016-01-23 12:30:26 -07:00
|
|
|
it('get_line: out-of-bounds is an error', function()
|
2016-06-28 12:45:19 -07:00
|
|
|
curbuf_depr('set_line', 0, 'line1.a')
|
|
|
|
eq(1, curbuf_depr('line_count')) -- sanity
|
|
|
|
eq(false, pcall(curbuf_depr, 'get_line', 1))
|
|
|
|
eq(false, pcall(curbuf_depr, 'get_line', -2))
|
2015-07-11 19:33:05 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it('set_line, del_line: out-of-bounds is an error', function()
|
2016-06-28 12:45:19 -07:00
|
|
|
curbuf_depr('set_line', 0, 'line1.a')
|
|
|
|
eq(false, pcall(curbuf_depr, 'set_line', 1, 'line1.b'))
|
|
|
|
eq(false, pcall(curbuf_depr, 'set_line', -2, 'line1.b'))
|
|
|
|
eq(false, pcall(curbuf_depr, 'del_line', 2))
|
|
|
|
eq(false, pcall(curbuf_depr, 'del_line', -3))
|
2015-07-11 19:33:05 -07:00
|
|
|
end)
|
|
|
|
|
2014-10-24 11:23:17 -07:00
|
|
|
it('can handle NULs', function()
|
2016-06-28 12:45:19 -07:00
|
|
|
curbuf_depr('set_line', 0, 'ab\0cd')
|
|
|
|
eq('ab\0cd', curbuf_depr('get_line', 0))
|
2014-10-24 11:23:17 -07:00
|
|
|
end)
|
2014-10-08 09:56:01 -07:00
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('deprecated: {get,set}_line_slice', function()
|
2015-07-11 19:33:05 -07:00
|
|
|
it('get_line_slice: out-of-bounds returns empty array', function()
|
2016-06-28 12:45:19 -07:00
|
|
|
curbuf_depr('set_line_slice', 0, 0, true, true, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'b', 'c'}, curbuf_depr('get_line_slice', 0, 2, true, true)) --sanity
|
|
|
|
|
|
|
|
eq({}, curbuf_depr('get_line_slice', 2, 3, false, true))
|
|
|
|
eq({}, curbuf_depr('get_line_slice', 3, 9, true, true))
|
|
|
|
eq({}, curbuf_depr('get_line_slice', 3, -1, true, true))
|
|
|
|
eq({}, curbuf_depr('get_line_slice', -3, -4, false, true))
|
|
|
|
eq({}, curbuf_depr('get_line_slice', -4, -5, true, true))
|
2015-07-11 19:33:05 -07:00
|
|
|
end)
|
|
|
|
|
2016-01-23 12:30:26 -07:00
|
|
|
it('set_line_slice: out-of-bounds extends past end', function()
|
2016-06-28 12:45:19 -07:00
|
|
|
curbuf_depr('set_line_slice', 0, 0, true, true, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'b', 'c'}, curbuf_depr('get_line_slice', 0, 2, true, true)) --sanity
|
|
|
|
|
|
|
|
eq({'c'}, curbuf_depr('get_line_slice', -1, 4, true, true))
|
|
|
|
eq({'a', 'b', 'c'}, curbuf_depr('get_line_slice', 0, 5, true, true))
|
|
|
|
curbuf_depr('set_line_slice', 4, 5, true, true, {'d'})
|
|
|
|
eq({'a', 'b', 'c', 'd'}, curbuf_depr('get_line_slice', 0, 5, true, true))
|
|
|
|
curbuf_depr('set_line_slice', -4, -5, true, true, {'e'})
|
|
|
|
eq({'e', 'a', 'b', 'c', 'd'}, curbuf_depr('get_line_slice', 0, 5, true, true))
|
2015-07-11 19:33:05 -07:00
|
|
|
end)
|
|
|
|
|
2014-10-08 09:56:01 -07:00
|
|
|
it('works', function()
|
2016-06-28 12:45:19 -07:00
|
|
|
eq({''}, curbuf_depr('get_line_slice', 0, -1, true, true))
|
2014-10-08 09:56:01 -07:00
|
|
|
-- Replace buffer
|
2016-06-28 12:45:19 -07:00
|
|
|
curbuf_depr('set_line_slice', 0, -1, true, true, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'b', 'c'}, curbuf_depr('get_line_slice', 0, -1, true, true))
|
|
|
|
eq({'b', 'c'}, curbuf_depr('get_line_slice', 1, -1, true, true))
|
|
|
|
eq({'b'}, curbuf_depr('get_line_slice', 1, 2, true, false))
|
|
|
|
eq({}, curbuf_depr('get_line_slice', 1, 1, true, false))
|
|
|
|
eq({'a', 'b'}, curbuf_depr('get_line_slice', 0, -1, true, false))
|
|
|
|
eq({'b'}, curbuf_depr('get_line_slice', 1, -1, true, false))
|
|
|
|
eq({'b', 'c'}, curbuf_depr('get_line_slice', -2, -1, true, true))
|
|
|
|
curbuf_depr('set_line_slice', 1, 2, true, false, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'a', 'b', 'c', 'c'}, curbuf_depr('get_line_slice', 0, -1, true, true))
|
|
|
|
curbuf_depr('set_line_slice', -1, -1, true, true, {'a', 'b', 'c'})
|
2014-10-08 09:56:01 -07:00
|
|
|
eq({'a', 'a', 'b', 'c', 'a', 'b', 'c'},
|
2016-06-28 12:45:19 -07:00
|
|
|
curbuf_depr('get_line_slice', 0, -1, true, true))
|
|
|
|
curbuf_depr('set_line_slice', 0, -3, true, false, {})
|
|
|
|
eq({'a', 'b', 'c'}, curbuf_depr('get_line_slice', 0, -1, true, true))
|
|
|
|
curbuf_depr('set_line_slice', 0, -1, true, true, {})
|
|
|
|
eq({''}, curbuf_depr('get_line_slice', 0, -1, true, true))
|
2014-10-08 09:56:01 -07:00
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2022-11-14 11:04:36 -07:00
|
|
|
describe_lua_and_rpc('nvim_buf_get_lines, nvim_buf_set_lines', function(api)
|
|
|
|
local get_lines = api.curbufmeths.get_lines
|
|
|
|
local set_lines = api.curbufmeths.set_lines
|
|
|
|
local line_count = api.curbufmeths.line_count
|
2016-03-12 09:07:17 -07:00
|
|
|
|
2017-04-10 16:24:37 -07:00
|
|
|
it('fails correctly when input is not valid', function()
|
2022-11-14 11:04:36 -07:00
|
|
|
eq(1, api.curbufmeths.get_number())
|
2019-09-06 17:17:37 -07:00
|
|
|
eq([[String cannot contain newlines]],
|
|
|
|
pcall_err(bufmeths.set_lines, 1, 1, 2, false, {'b\na'}))
|
2017-04-10 16:24:37 -07:00
|
|
|
end)
|
|
|
|
|
2019-09-01 22:04:20 -07:00
|
|
|
it("fails if 'nomodifiable'", function()
|
|
|
|
command('set nomodifiable')
|
2019-09-06 17:17:37 -07:00
|
|
|
eq([[Buffer is not 'modifiable']],
|
2022-11-14 11:04:36 -07:00
|
|
|
pcall_err(api.bufmeths.set_lines, 1, 1, 2, false, {'a','b'}))
|
2019-09-01 22:04:20 -07:00
|
|
|
end)
|
|
|
|
|
2016-03-12 09:07:17 -07:00
|
|
|
it('has correct line_count when inserting and deleting', function()
|
|
|
|
eq(1, line_count())
|
|
|
|
set_lines(-1, -1, true, {'line'})
|
|
|
|
eq(2, line_count())
|
|
|
|
set_lines(-1, -1, true, {'line'})
|
|
|
|
eq(3, line_count())
|
|
|
|
set_lines(-2, -1, true, {})
|
|
|
|
eq(2, line_count())
|
|
|
|
set_lines(-2, -1, true, {})
|
|
|
|
set_lines(-2, -1, true, {})
|
|
|
|
-- There's always at least one line
|
|
|
|
eq(1, line_count())
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can get, set and delete a single line', function()
|
|
|
|
eq({''}, get_lines(0, 1, true))
|
|
|
|
set_lines(0, 1, true, {'line1'})
|
|
|
|
eq({'line1'}, get_lines(0, 1, true))
|
|
|
|
set_lines(0, 1, true, {'line2'})
|
|
|
|
eq({'line2'}, get_lines(0, 1, true))
|
|
|
|
set_lines(0, 1, true, {})
|
|
|
|
eq({''}, get_lines(0, 1, true))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can get a single line with strict indexing', function()
|
|
|
|
set_lines(0, 1, true, {'line1.a'})
|
|
|
|
eq(1, line_count()) -- sanity
|
2022-06-23 06:38:00 -07:00
|
|
|
eq('Index out of bounds', pcall_err(get_lines, 1, 2, true))
|
|
|
|
eq('Index out of bounds', pcall_err(get_lines, -3, -2, true))
|
2016-03-12 09:07:17 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it('can get a single line with non-strict indexing', function()
|
|
|
|
set_lines(0, 1, true, {'line1.a'})
|
|
|
|
eq(1, line_count()) -- sanity
|
|
|
|
eq({}, get_lines(1, 2, false))
|
|
|
|
eq({}, get_lines(-3, -2, false))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can set and delete a single line with strict indexing', function()
|
|
|
|
set_lines(0, 1, true, {'line1.a'})
|
2022-06-23 06:38:00 -07:00
|
|
|
eq('Index out of bounds', pcall_err(set_lines, 1, 2, true, {'line1.b'}))
|
|
|
|
eq('Index out of bounds', pcall_err(set_lines, -3, -2, true, {'line1.c'}))
|
2016-03-12 09:07:17 -07:00
|
|
|
eq({'line1.a'}, get_lines(0, -1, true))
|
2022-06-23 06:38:00 -07:00
|
|
|
eq('Index out of bounds', pcall_err(set_lines, 1, 2, true, {}))
|
|
|
|
eq('Index out of bounds', pcall_err(set_lines, -3, -2, true, {}))
|
2016-03-12 09:07:17 -07:00
|
|
|
eq({'line1.a'}, get_lines(0, -1, true))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can set and delete a single line with non-strict indexing', function()
|
|
|
|
set_lines(0, 1, true, {'line1.a'})
|
|
|
|
set_lines(1, 2, false, {'line1.b'})
|
|
|
|
set_lines(-4, -3, false, {'line1.c'})
|
|
|
|
eq({'line1.c', 'line1.a', 'line1.b'}, get_lines(0, -1, true))
|
|
|
|
set_lines(3, 4, false, {})
|
|
|
|
set_lines(-5, -4, false, {})
|
|
|
|
eq({'line1.c', 'line1.a', 'line1.b'}, get_lines(0, -1, true))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can handle NULs', function()
|
|
|
|
set_lines(0, 1, true, {'ab\0cd'})
|
|
|
|
eq({'ab\0cd'}, get_lines(0, -1, true))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('works with multiple lines', function()
|
|
|
|
eq({''}, get_lines(0, -1, true))
|
|
|
|
-- Replace buffer
|
|
|
|
for _, mode in pairs({false, true}) do
|
|
|
|
set_lines(0, -1, mode, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'b', 'c'}, get_lines(0, -1, mode))
|
|
|
|
eq({'b', 'c'}, get_lines(1, -1, mode))
|
|
|
|
eq({'b'}, get_lines(1, 2, mode))
|
|
|
|
eq({}, get_lines(1, 1, mode))
|
|
|
|
eq({'a', 'b'}, get_lines(0, -2, mode))
|
|
|
|
eq({'b'}, get_lines(1, -2, mode))
|
|
|
|
eq({'b', 'c'}, get_lines(-3, -1, mode))
|
|
|
|
set_lines(1, 2, mode, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'a', 'b', 'c', 'c'}, get_lines(0, -1, mode))
|
|
|
|
set_lines(-2, -1, mode, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'a', 'b', 'c', 'a', 'b', 'c'},
|
|
|
|
get_lines(0, -1, mode))
|
|
|
|
set_lines(0, -4, mode, {})
|
|
|
|
eq({'a', 'b', 'c'}, get_lines(0, -1, mode))
|
|
|
|
set_lines(0, -1, mode, {})
|
|
|
|
eq({''}, get_lines(0, -1, mode))
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can get line ranges with non-strict indexing', function()
|
|
|
|
set_lines(0, -1, true, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'b', 'c'}, get_lines(0, -1, true)) --sanity
|
|
|
|
|
|
|
|
eq({}, get_lines(3, 4, false))
|
|
|
|
eq({}, get_lines(3, 10, false))
|
|
|
|
eq({}, get_lines(-5, -5, false))
|
|
|
|
eq({}, get_lines(3, -1, false))
|
|
|
|
eq({}, get_lines(-3, -4, false))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can get line ranges with strict indexing', function()
|
|
|
|
set_lines(0, -1, true, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'b', 'c'}, get_lines(0, -1, true)) --sanity
|
|
|
|
|
2022-06-23 06:38:00 -07:00
|
|
|
eq('Index out of bounds', pcall_err(get_lines, 3, 4, true))
|
|
|
|
eq('Index out of bounds', pcall_err(get_lines, 3, 10, true))
|
|
|
|
eq('Index out of bounds', pcall_err(get_lines, -5, -5, true))
|
2016-03-12 09:07:17 -07:00
|
|
|
-- empty or inverted ranges are not errors
|
|
|
|
eq({}, get_lines(3, -1, true))
|
|
|
|
eq({}, get_lines(-3, -4, true))
|
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
it('set_lines: out-of-bounds can extend past end', function()
|
2016-03-12 09:07:17 -07:00
|
|
|
set_lines(0, -1, true, {'a', 'b', 'c'})
|
|
|
|
eq({'a', 'b', 'c'}, get_lines(0, -1, true)) --sanity
|
|
|
|
|
|
|
|
eq({'c'}, get_lines(-2, 5, false))
|
|
|
|
eq({'a', 'b', 'c'}, get_lines(0, 6, false))
|
2022-06-23 06:38:00 -07:00
|
|
|
eq('Index out of bounds', pcall_err(set_lines, 4, 6, true, {'d'}))
|
2016-03-12 09:07:17 -07:00
|
|
|
set_lines(4, 6, false, {'d'})
|
|
|
|
eq({'a', 'b', 'c', 'd'}, get_lines(0, -1, true))
|
2022-06-23 06:38:00 -07:00
|
|
|
eq('Index out of bounds', pcall_err(set_lines, -6, -6, true, {'e'}))
|
2016-03-12 09:07:17 -07:00
|
|
|
set_lines(-6, -6, false, {'e'})
|
|
|
|
eq({'e', 'a', 'b', 'c', 'd'}, get_lines(0, -1, true))
|
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
it("set_lines on alternate buffer does not access invalid line (E315)", function()
|
2017-04-08 14:12:26 -07:00
|
|
|
feed_command('set hidden')
|
2017-01-27 05:09:33 -07:00
|
|
|
insert('Initial file')
|
|
|
|
command('enew')
|
|
|
|
insert([[
|
|
|
|
More
|
|
|
|
Lines
|
|
|
|
Than
|
|
|
|
In
|
|
|
|
The
|
|
|
|
Other
|
|
|
|
Buffer]])
|
2017-04-08 14:12:26 -07:00
|
|
|
feed_command('$')
|
2017-01-27 05:09:33 -07:00
|
|
|
local retval = exc_exec("call nvim_buf_set_lines(1, 0, 1, v:false, ['test'])")
|
|
|
|
eq(0, retval)
|
|
|
|
end)
|
2019-03-04 09:53:41 -07:00
|
|
|
|
|
|
|
it("set_lines of invisible buffer doesn't move cursor in current window", function()
|
|
|
|
local screen = Screen.new(20, 5)
|
|
|
|
screen:set_default_attr_ids({
|
|
|
|
[1] = {bold = true, foreground = Screen.colors.Blue1},
|
|
|
|
[2] = {bold = true},
|
|
|
|
})
|
|
|
|
screen:attach()
|
|
|
|
|
|
|
|
insert([[
|
|
|
|
Who would win?
|
|
|
|
A real window
|
|
|
|
with proper text]])
|
2022-11-14 11:04:36 -07:00
|
|
|
local buf = api.meths.create_buf(false,true)
|
2019-03-04 09:53:41 -07:00
|
|
|
screen:expect([[
|
|
|
|
Who would win? |
|
|
|
|
A real window |
|
|
|
|
with proper tex^t |
|
|
|
|
{1:~ }|
|
|
|
|
|
|
|
|
|
]])
|
|
|
|
|
2022-11-14 11:04:36 -07:00
|
|
|
api.meths.buf_set_lines(buf, 0, -1, true, {'or some', 'scratchy text'})
|
2019-03-04 09:53:41 -07:00
|
|
|
feed('i') -- provoke redraw
|
|
|
|
screen:expect([[
|
|
|
|
Who would win? |
|
|
|
|
A real window |
|
|
|
|
with proper tex^t |
|
|
|
|
{1:~ }|
|
|
|
|
{2:-- INSERT --} |
|
|
|
|
]])
|
|
|
|
end)
|
2019-03-16 18:09:06 -07:00
|
|
|
|
|
|
|
it('set_lines on hidden buffer preserves "previous window" #9741', function()
|
|
|
|
insert([[
|
|
|
|
visible buffer line 1
|
|
|
|
line 2
|
|
|
|
]])
|
2022-11-14 11:04:36 -07:00
|
|
|
local hiddenbuf = api.meths.create_buf(false,true)
|
2019-03-16 18:09:06 -07:00
|
|
|
command('vsplit')
|
|
|
|
command('vsplit')
|
|
|
|
feed('<c-w>l<c-w>l<c-w>l')
|
|
|
|
eq(3, funcs.winnr())
|
|
|
|
feed('<c-w>h')
|
|
|
|
eq(2, funcs.winnr())
|
2022-11-14 11:04:36 -07:00
|
|
|
api.meths.buf_set_lines(hiddenbuf, 0, -1, true,
|
|
|
|
{'hidden buffer line 1', 'line 2'})
|
2019-03-16 18:09:06 -07:00
|
|
|
feed('<c-w>p')
|
|
|
|
eq(3, funcs.winnr())
|
|
|
|
end)
|
2018-10-30 15:20:23 -07:00
|
|
|
end)
|
|
|
|
|
2022-06-23 06:38:00 -07:00
|
|
|
describe('nvim_buf_set_text', function()
|
2020-05-03 18:30:59 -07:00
|
|
|
local get_lines, set_text = curbufmeths.get_lines, curbufmeths.set_text
|
|
|
|
|
|
|
|
it('works', function()
|
|
|
|
insert([[
|
|
|
|
hello foo!
|
|
|
|
text
|
|
|
|
]])
|
|
|
|
|
|
|
|
eq({'hello foo!'}, get_lines(0, 1, true))
|
|
|
|
|
|
|
|
|
|
|
|
-- can replace a single word
|
|
|
|
set_text(0, 6, 0, 9, {'world'})
|
|
|
|
eq({'hello world!', 'text'}, get_lines(0, 2, true))
|
|
|
|
|
2020-12-21 18:51:52 -07:00
|
|
|
-- can insert text
|
|
|
|
set_text(0, 0, 0, 0, {'well '})
|
|
|
|
eq({'well hello world!', 'text'}, get_lines(0, 2, true))
|
|
|
|
|
|
|
|
-- can delete text
|
|
|
|
set_text(0, 0, 0, 5, {''})
|
|
|
|
eq({'hello world!', 'text'}, get_lines(0, 2, true))
|
|
|
|
|
2020-05-03 18:30:59 -07:00
|
|
|
-- can replace with multiple lines
|
2020-12-21 19:24:15 -07:00
|
|
|
set_text(0, 6, 0, 11, {'foo', 'wo', 'more'})
|
2020-05-03 18:30:59 -07:00
|
|
|
eq({'hello foo', 'wo', 'more!', 'text'}, get_lines(0, 4, true))
|
|
|
|
|
|
|
|
-- will join multiple lines if needed
|
|
|
|
set_text(0, 6, 3, 4, {'bar'})
|
|
|
|
eq({'hello bar'}, get_lines(0, 1, true))
|
fix(api)!: correctly handle negative line numbers for nvim_buf_set_text (#17498)
nvim_buf_set_text does not handle negative row numbers correctly: for
example,
nvim_buf_set_text(0, -2, 0, -1, 20, {"Hello", "world"})
should replace the 2nd to last line in the buffer with "Hello" and the
first 20 characters of the last line with "world". Instead, it reports
"start_row out of bounds". This happens because when negative line
numbers are used, they are incremented by one additional number to make
the non-negative line numbers end-exclusive. However, the line numbers
for nvim_buf_set_text should be end-inclusive.
In #15181 we handled this for nvim_buf_get_text by adding a new
parameter to `normalize_index`. We can solve the problem with
nvim_buf_set_text by simply availing ourselves of this new argument.
This is a breaking change, but makes the semantics of negative line
numbers much clearer and more obvious (as well as matching
nvim_buf_get_text).
BREAKING CHANGE: Existing usages of nvim_buf_set_text that use negative
line numbers will be off-by-one.
2022-02-23 15:19:47 -07:00
|
|
|
|
|
|
|
-- can use negative line numbers
|
|
|
|
set_text(-2, 0, -2, 5, {'goodbye'})
|
|
|
|
eq({'goodbye bar', ''}, get_lines(0, -1, true))
|
|
|
|
|
|
|
|
set_text(-1, 0, -1, 0, {'text'})
|
|
|
|
eq({'goodbye bar', 'text'}, get_lines(0, 2, true))
|
2022-06-23 06:38:00 -07:00
|
|
|
|
|
|
|
-- can append to a line
|
|
|
|
set_text(1, 4, -1, 4, {' and', 'more'})
|
|
|
|
eq({'goodbye bar', 'text and', 'more'}, get_lines(0, 3, true))
|
2020-05-03 18:30:59 -07:00
|
|
|
end)
|
|
|
|
|
2020-12-21 18:51:52 -07:00
|
|
|
it('works with undo', function()
|
|
|
|
insert([[
|
|
|
|
hello world!
|
2020-12-21 19:24:15 -07:00
|
|
|
foo bar
|
2020-12-21 18:51:52 -07:00
|
|
|
]])
|
|
|
|
|
|
|
|
-- setting text
|
|
|
|
set_text(0, 0, 0, 0, {'well '})
|
|
|
|
feed('u')
|
|
|
|
eq({'hello world!'}, get_lines(0, 1, true))
|
|
|
|
|
|
|
|
-- deleting text
|
|
|
|
set_text(0, 0, 0, 6, {''})
|
|
|
|
feed('u')
|
|
|
|
eq({'hello world!'}, get_lines(0, 1, true))
|
|
|
|
|
|
|
|
-- inserting newlines
|
|
|
|
set_text(0, 0, 0, 0, {'hello', 'mr '})
|
|
|
|
feed('u')
|
|
|
|
eq({'hello world!'}, get_lines(0, 1, true))
|
2020-12-21 19:24:15 -07:00
|
|
|
|
|
|
|
-- deleting newlines
|
|
|
|
set_text(0, 0, 1, 4, {'hello'})
|
|
|
|
feed('u')
|
|
|
|
eq({'hello world!'}, get_lines(0, 1, true))
|
2020-12-21 18:51:52 -07:00
|
|
|
end)
|
|
|
|
|
2020-05-03 18:30:59 -07:00
|
|
|
it('updates the cursor position', function()
|
|
|
|
insert([[
|
|
|
|
hello world!
|
|
|
|
]])
|
|
|
|
|
|
|
|
-- position the cursor on `!`
|
|
|
|
curwin('set_cursor', {1, 11})
|
|
|
|
-- replace 'world' with 'foo'
|
|
|
|
set_text(0, 6, 0, 11, {'foo'})
|
|
|
|
eq('hello foo!', curbuf_depr('get_line', 0))
|
|
|
|
-- cursor should be moved left by two columns (replacement is shorter by 2 chars)
|
|
|
|
eq({1, 9}, curwin('get_cursor'))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('can handle NULs', function()
|
|
|
|
set_text(0, 0, 0, 0, {'ab\0cd'})
|
|
|
|
eq('ab\0cd', curbuf_depr('get_line', 0))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('adjusts extmarks', function()
|
|
|
|
local ns = request('nvim_create_namespace', "my-fancy-plugin")
|
|
|
|
insert([[
|
|
|
|
foo bar
|
|
|
|
baz
|
|
|
|
]])
|
2020-12-21 18:51:52 -07:00
|
|
|
local id1 = curbufmeths.set_extmark(ns, 0, 1, {})
|
|
|
|
local id2 = curbufmeths.set_extmark(ns, 0, 7, {})
|
|
|
|
local id3 = curbufmeths.set_extmark(ns, 1, 1, {})
|
2020-05-03 18:30:59 -07:00
|
|
|
set_text(0, 4, 0, 7, {"q"})
|
|
|
|
|
|
|
|
eq({'foo q', 'baz'}, get_lines(0, 2, true))
|
|
|
|
-- mark before replacement point is unaffected
|
2020-12-21 19:24:15 -07:00
|
|
|
eq({0, 1}, curbufmeths.get_extmark_by_id(ns, id1, {}))
|
2020-05-03 18:30:59 -07:00
|
|
|
-- mark gets shifted back because the replacement was shorter
|
2020-12-21 19:24:15 -07:00
|
|
|
eq({0, 5}, curbufmeths.get_extmark_by_id(ns, id2, {}))
|
2020-05-03 18:30:59 -07:00
|
|
|
-- mark on the next line is unaffected
|
2020-12-21 19:24:15 -07:00
|
|
|
eq({1, 1}, curbufmeths.get_extmark_by_id(ns, id3, {}))
|
2020-05-03 18:30:59 -07:00
|
|
|
|
|
|
|
-- replacing the text spanning two lines will adjust the mark on the next line
|
|
|
|
set_text(0, 3, 1, 3, {"qux"})
|
|
|
|
eq({'fooqux', ''}, get_lines(0, 2, true))
|
2020-12-21 19:24:15 -07:00
|
|
|
eq({0, 6}, curbufmeths.get_extmark_by_id(ns, id3, {}))
|
2020-05-03 18:30:59 -07:00
|
|
|
-- but mark before replacement point is still unaffected
|
2020-12-21 19:24:15 -07:00
|
|
|
eq({0, 1}, curbufmeths.get_extmark_by_id(ns, id1, {}))
|
2020-05-03 18:30:59 -07:00
|
|
|
-- and the mark in the middle was shifted to the end of the insertion
|
2020-12-21 19:24:15 -07:00
|
|
|
eq({0, 6}, curbufmeths.get_extmark_by_id(ns, id2, {}))
|
|
|
|
|
|
|
|
-- marks should be put back into the same place after undoing
|
|
|
|
set_text(0, 0, 0, 2, {''})
|
|
|
|
feed('u')
|
|
|
|
eq({0, 1}, curbufmeths.get_extmark_by_id(ns, id1, {}))
|
|
|
|
eq({0, 6}, curbufmeths.get_extmark_by_id(ns, id2, {}))
|
|
|
|
eq({0, 6}, curbufmeths.get_extmark_by_id(ns, id3, {}))
|
|
|
|
|
2022-06-23 06:38:00 -07:00
|
|
|
-- marks should be shifted over by the correct number of bytes for multibyte
|
|
|
|
-- chars
|
|
|
|
set_text(0, 0, 0, 0, {'Ø'})
|
|
|
|
eq({0, 3}, curbufmeths.get_extmark_by_id(ns, id1, {}))
|
|
|
|
eq({0, 8}, curbufmeths.get_extmark_by_id(ns, id2, {}))
|
|
|
|
eq({0, 8}, curbufmeths.get_extmark_by_id(ns, id3, {}))
|
2020-05-03 18:30:59 -07:00
|
|
|
end)
|
2021-02-07 14:50:29 -07:00
|
|
|
|
|
|
|
it("correctly marks changed region for redraw #13890", function()
|
|
|
|
local screen = Screen.new(20, 5)
|
|
|
|
screen:attach()
|
|
|
|
|
|
|
|
insert([[
|
|
|
|
AAA
|
|
|
|
BBB
|
|
|
|
]])
|
|
|
|
|
|
|
|
curbufmeths.set_text(0, 0, 1, 3, {'XXX', 'YYY'})
|
|
|
|
|
|
|
|
screen:expect([[
|
|
|
|
XXX |
|
|
|
|
YYY |
|
|
|
|
^ |
|
|
|
|
~ |
|
|
|
|
|
|
|
|
|
|
|
|
|
]])
|
2022-06-23 06:38:00 -07:00
|
|
|
end)
|
2021-02-07 14:50:29 -07:00
|
|
|
|
2022-06-23 06:38:00 -07:00
|
|
|
it('errors on out-of-range', function()
|
|
|
|
insert([[
|
|
|
|
hello foo!
|
|
|
|
text]])
|
|
|
|
eq('start_row out of bounds', pcall_err(set_text, 2, 0, 3, 0, {}))
|
|
|
|
eq('start_row out of bounds', pcall_err(set_text, -3, 0, 0, 0, {}))
|
|
|
|
eq('end_row out of bounds', pcall_err(set_text, 0, 0, 2, 0, {}))
|
|
|
|
eq('end_row out of bounds', pcall_err(set_text, 0, 0, -3, 0, {}))
|
|
|
|
eq('start_col out of bounds', pcall_err(set_text, 1, 5, 1, 5, {}))
|
|
|
|
eq('end_col out of bounds', pcall_err(set_text, 1, 0, 1, 5, {}))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('errors when start is greater than end', function()
|
|
|
|
insert([[
|
|
|
|
hello foo!
|
|
|
|
text]])
|
|
|
|
eq('start is higher than end', pcall_err(set_text, 1, 0, 0, 0, {}))
|
|
|
|
eq('start is higher than end', pcall_err(set_text, 0, 1, 0, 0, {}))
|
2021-02-07 14:50:29 -07:00
|
|
|
end)
|
2022-08-05 15:22:01 -07:00
|
|
|
|
|
|
|
it('no heap-use-after-free when called consecutively #19643', function()
|
|
|
|
set_text(0, 0, 0, 0, {'one', '', '', 'two'})
|
|
|
|
eq({'one', '', '', 'two'}, get_lines(0, 4, true))
|
|
|
|
meths.win_set_cursor(0, {1, 0})
|
|
|
|
exec_lua([[
|
|
|
|
vim.api.nvim_buf_set_text(0, 0, 3, 1, 0, {''})
|
|
|
|
vim.api.nvim_buf_set_text(0, 0, 3, 1, 0, {''})
|
|
|
|
]])
|
|
|
|
eq({'one', 'two'}, get_lines(0, 2, true))
|
|
|
|
end)
|
2020-05-03 18:30:59 -07:00
|
|
|
end)
|
|
|
|
|
2022-11-14 03:01:35 -07:00
|
|
|
describe_lua_and_rpc('nvim_buf_get_text', function(api)
|
|
|
|
local get_text = api.curbufmeths.get_text
|
2022-06-23 06:38:00 -07:00
|
|
|
before_each(function()
|
2022-02-22 13:19:21 -07:00
|
|
|
insert([[
|
|
|
|
hello foo!
|
|
|
|
text]])
|
2022-06-23 06:38:00 -07:00
|
|
|
end)
|
2022-02-22 13:19:21 -07:00
|
|
|
|
2022-06-23 06:38:00 -07:00
|
|
|
it('works', function()
|
2022-02-22 13:19:21 -07:00
|
|
|
eq({'hello'}, get_text(0, 0, 0, 5, {}))
|
|
|
|
eq({'hello foo!'}, get_text(0, 0, 0, 42, {}))
|
|
|
|
eq({'foo!'}, get_text(0, 6, 0, 10, {}))
|
|
|
|
eq({'foo!', 'tex'}, get_text(0, 6, 1, 3, {}))
|
|
|
|
eq({'foo!', 'tex'}, get_text(-2, 6, -1, 3, {}))
|
|
|
|
eq({''}, get_text(0, 18, 0, 20, {}))
|
|
|
|
eq({'ext'}, get_text(-1, 1, -1, 4, {}))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('errors on out-of-range', function()
|
2022-06-23 06:38:00 -07:00
|
|
|
eq('Index out of bounds', pcall_err(get_text, 2, 0, 3, 0, {}))
|
|
|
|
eq('Index out of bounds', pcall_err(get_text, -3, 0, 0, 0, {}))
|
|
|
|
eq('Index out of bounds', pcall_err(get_text, 0, 0, 2, 0, {}))
|
|
|
|
eq('Index out of bounds', pcall_err(get_text, 0, 0, -3, 0, {}))
|
|
|
|
-- no ml_get errors should happen #19017
|
|
|
|
eq('', meths.get_vvar('errmsg'))
|
2022-02-22 13:19:21 -07:00
|
|
|
end)
|
|
|
|
|
|
|
|
it('errors when start is greater than end', function()
|
2022-06-23 06:38:00 -07:00
|
|
|
eq('start is higher than end', pcall_err(get_text, 1, 0, 0, 0, {}))
|
|
|
|
eq('start_col must be less than end_col', pcall_err(get_text, 0, 1, 0, 0, {}))
|
2022-02-22 13:19:21 -07:00
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('nvim_buf_get_offset', function()
|
2018-11-01 11:15:43 -07:00
|
|
|
local get_offset = curbufmeths.get_offset
|
2018-10-30 15:20:23 -07:00
|
|
|
it('works', function()
|
2018-11-01 11:15:43 -07:00
|
|
|
curbufmeths.set_lines(0,-1,true,{'Some\r','exa\000mple', '', 'buf\rfer', 'text'})
|
|
|
|
eq(5, curbufmeths.line_count())
|
|
|
|
eq(0, get_offset(0))
|
|
|
|
eq(6, get_offset(1))
|
|
|
|
eq(15, get_offset(2))
|
|
|
|
eq(16, get_offset(3))
|
|
|
|
eq(24, get_offset(4))
|
|
|
|
eq(29, get_offset(5))
|
2019-09-03 13:51:45 -07:00
|
|
|
eq('Index out of bounds', pcall_err(get_offset, 6))
|
|
|
|
eq('Index out of bounds', pcall_err(get_offset, -1))
|
2018-10-30 15:20:23 -07:00
|
|
|
|
|
|
|
curbufmeths.set_option('eol', false)
|
|
|
|
curbufmeths.set_option('fixeol', false)
|
2018-11-01 11:15:43 -07:00
|
|
|
eq(28, get_offset(5))
|
2018-10-30 15:20:23 -07:00
|
|
|
|
2018-11-01 11:15:43 -07:00
|
|
|
-- fileformat is ignored
|
2018-10-30 15:20:23 -07:00
|
|
|
curbufmeths.set_option('fileformat', 'dos')
|
2018-11-01 11:15:43 -07:00
|
|
|
eq(0, get_offset(0))
|
|
|
|
eq(6, get_offset(1))
|
|
|
|
eq(15, get_offset(2))
|
|
|
|
eq(16, get_offset(3))
|
|
|
|
eq(24, get_offset(4))
|
|
|
|
eq(28, get_offset(5))
|
2018-10-30 15:20:23 -07:00
|
|
|
curbufmeths.set_option('eol', true)
|
2018-11-01 11:15:43 -07:00
|
|
|
eq(29, get_offset(5))
|
2018-10-30 15:20:23 -07:00
|
|
|
|
|
|
|
command("set hidden")
|
|
|
|
command("enew")
|
2018-11-01 11:15:43 -07:00
|
|
|
eq(6, bufmeths.get_offset(1,1))
|
2018-10-30 15:20:23 -07:00
|
|
|
command("bunload! 1")
|
2018-11-01 11:15:43 -07:00
|
|
|
eq(-1, bufmeths.get_offset(1,1))
|
2018-10-30 15:20:23 -07:00
|
|
|
end)
|
2016-03-12 09:07:17 -07:00
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('nvim_buf_get_var, nvim_buf_set_var, nvim_buf_del_var', function()
|
2014-10-08 09:56:01 -07:00
|
|
|
it('works', function()
|
|
|
|
curbuf('set_var', 'lua', {1, 2, {['3'] = 1}})
|
|
|
|
eq({1, 2, {['3'] = 1}}, curbuf('get_var', 'lua'))
|
|
|
|
eq({1, 2, {['3'] = 1}}, nvim('eval', 'b:lua'))
|
2016-02-10 16:01:17 -07:00
|
|
|
eq(1, funcs.exists('b:lua'))
|
|
|
|
curbufmeths.del_var('lua')
|
|
|
|
eq(0, funcs.exists('b:lua'))
|
2019-09-03 13:51:45 -07:00
|
|
|
eq( 'Key not found: lua', pcall_err(curbufmeths.del_var, 'lua'))
|
2017-02-22 15:34:25 -07:00
|
|
|
curbufmeths.set_var('lua', 1)
|
|
|
|
command('lockvar b:lua')
|
2019-09-03 13:51:45 -07:00
|
|
|
eq('Key is locked: lua', pcall_err(curbufmeths.del_var, 'lua'))
|
|
|
|
eq('Key is locked: lua', pcall_err(curbufmeths.set_var, 'lua', 1))
|
|
|
|
eq('Key is read-only: changedtick',
|
|
|
|
pcall_err(curbufmeths.del_var, 'changedtick'))
|
|
|
|
eq('Key is read-only: changedtick',
|
|
|
|
pcall_err(curbufmeths.set_var, 'changedtick', 1))
|
2016-07-29 15:39:09 -07:00
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('nvim_buf_get_changedtick', function()
|
2016-07-29 15:39:09 -07:00
|
|
|
it('works', function()
|
|
|
|
eq(2, curbufmeths.get_changedtick())
|
|
|
|
curbufmeths.set_lines(0, 1, false, {'abc\0', '\0def', 'ghi'})
|
|
|
|
eq(3, curbufmeths.get_changedtick())
|
2017-02-14 16:00:45 -07:00
|
|
|
eq(3, curbufmeths.get_var('changedtick'))
|
2014-10-08 09:56:01 -07:00
|
|
|
end)
|
2016-09-14 02:17:07 -07:00
|
|
|
|
|
|
|
it('buffer_set_var returns the old value', function()
|
|
|
|
local val1 = {1, 2, {['3'] = 1}}
|
|
|
|
local val2 = {4, 7}
|
|
|
|
eq(NIL, request('buffer_set_var', 0, 'lua', val1))
|
|
|
|
eq(val1, request('buffer_set_var', 0, 'lua', val2))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('buffer_del_var returns the old value', function()
|
|
|
|
local val1 = {1, 2, {['3'] = 1}}
|
|
|
|
local val2 = {4, 7}
|
|
|
|
eq(NIL, request('buffer_set_var', 0, 'lua', val1))
|
|
|
|
eq(val1, request('buffer_set_var', 0, 'lua', val2))
|
|
|
|
eq(val2, request('buffer_del_var', 0, 'lua'))
|
|
|
|
end)
|
2014-10-08 09:56:01 -07:00
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('nvim_buf_get_option, nvim_buf_set_option', function()
|
2014-10-08 09:56:01 -07:00
|
|
|
it('works', function()
|
|
|
|
eq(8, curbuf('get_option', 'shiftwidth'))
|
|
|
|
curbuf('set_option', 'shiftwidth', 4)
|
|
|
|
eq(4, curbuf('get_option', 'shiftwidth'))
|
|
|
|
-- global-local option
|
|
|
|
curbuf('set_option', 'define', 'test')
|
|
|
|
eq('test', curbuf('get_option', 'define'))
|
|
|
|
-- Doesn't change the global value
|
|
|
|
eq([[^\s*#\s*define]], nvim('get_option', 'define'))
|
|
|
|
end)
|
2021-10-11 21:09:08 -07:00
|
|
|
|
|
|
|
it('returns values for unset local options', function()
|
|
|
|
-- 'undolevels' is only set to its "unset" value when a new buffer is
|
|
|
|
-- created
|
|
|
|
command('enew')
|
|
|
|
eq(-123456, curbuf('get_option', 'undolevels'))
|
|
|
|
end)
|
2014-10-08 09:56:01 -07:00
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('nvim_buf_get_name, nvim_buf_set_name', function()
|
2014-10-08 09:56:01 -07:00
|
|
|
it('works', function()
|
|
|
|
nvim('command', 'new')
|
|
|
|
eq('', curbuf('get_name'))
|
|
|
|
local new_name = nvim('eval', 'resolve(tempname())')
|
|
|
|
curbuf('set_name', new_name)
|
|
|
|
eq(new_name, curbuf('get_name'))
|
|
|
|
nvim('command', 'w!')
|
2019-03-16 18:09:06 -07:00
|
|
|
eq(1, funcs.filereadable(new_name))
|
2014-10-08 09:56:01 -07:00
|
|
|
os.remove(new_name)
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('nvim_buf_is_loaded', function()
|
2018-06-28 18:32:05 -07:00
|
|
|
it('works', function()
|
|
|
|
-- record our buffer number for when we unload it
|
|
|
|
local bufnr = curbuf('get_number')
|
|
|
|
-- api should report that the buffer is loaded
|
|
|
|
ok(buffer('is_loaded', bufnr))
|
|
|
|
-- hide the current buffer by switching to a new empty buffer
|
|
|
|
-- Careful! we need to modify the buffer first or vim will just reuse it
|
|
|
|
buffer('set_lines', bufnr, 0, -1, 1, {'line1'})
|
|
|
|
command('hide enew')
|
|
|
|
-- confirm the buffer is hidden, but still loaded
|
|
|
|
local infolist = nvim('eval', 'getbufinfo('..bufnr..')')
|
|
|
|
eq(1, #infolist)
|
|
|
|
eq(1, infolist[1].hidden)
|
|
|
|
eq(1, infolist[1].loaded)
|
|
|
|
-- now force unload the buffer
|
|
|
|
command('bunload! '..bufnr)
|
|
|
|
-- confirm the buffer is unloaded
|
|
|
|
infolist = nvim('eval', 'getbufinfo('..bufnr..')')
|
|
|
|
eq(0, infolist[1].loaded)
|
|
|
|
-- nvim_buf_is_loaded() should also report the buffer as unloaded
|
|
|
|
eq(false, buffer('is_loaded', bufnr))
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('nvim_buf_is_valid', function()
|
2014-10-08 09:56:01 -07:00
|
|
|
it('works', function()
|
|
|
|
nvim('command', 'new')
|
2016-09-16 21:30:36 -07:00
|
|
|
local b = nvim('get_current_buf')
|
2014-10-08 09:56:01 -07:00
|
|
|
ok(buffer('is_valid', b))
|
|
|
|
nvim('command', 'bw!')
|
|
|
|
ok(not buffer('is_valid', b))
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2020-10-09 12:39:59 -07:00
|
|
|
describe('nvim_buf_delete', function()
|
|
|
|
it('allows for just deleting', function()
|
|
|
|
nvim('command', 'new')
|
|
|
|
local b = nvim('get_current_buf')
|
|
|
|
ok(buffer('is_valid', b))
|
|
|
|
nvim('buf_delete', b, {})
|
|
|
|
ok(not buffer('is_loaded', b))
|
|
|
|
ok(not buffer('is_valid', b))
|
|
|
|
end)
|
|
|
|
|
|
|
|
it('allows for just unloading', function()
|
|
|
|
nvim('command', 'new')
|
|
|
|
local b = nvim('get_current_buf')
|
|
|
|
ok(buffer('is_valid', b))
|
|
|
|
nvim('buf_delete', b, { unload = true })
|
|
|
|
ok(not buffer('is_loaded', b))
|
|
|
|
ok(buffer('is_valid', b))
|
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
2019-03-16 18:09:06 -07:00
|
|
|
describe('nvim_buf_get_mark', function()
|
2014-10-08 09:56:01 -07:00
|
|
|
it('works', function()
|
2016-06-28 12:45:19 -07:00
|
|
|
curbuf('set_lines', -1, -1, true, {'a', 'bit of', 'text'})
|
2014-10-08 09:56:01 -07:00
|
|
|
curwin('set_cursor', {3, 4})
|
2019-03-16 18:09:06 -07:00
|
|
|
nvim('command', 'mark v')
|
|
|
|
eq({3, 0}, curbuf('get_mark', 'v'))
|
2014-10-08 09:56:01 -07:00
|
|
|
end)
|
|
|
|
end)
|
2021-10-05 08:49:20 -07:00
|
|
|
|
|
|
|
describe('nvim_buf_set_mark', function()
|
|
|
|
it('works with buffer local marks', function()
|
|
|
|
curbufmeths.set_lines(-1, -1, true, {'a', 'bit of', 'text'})
|
2021-11-01 06:46:26 -07:00
|
|
|
eq(true, curbufmeths.set_mark('z', 1, 1, {}))
|
2021-10-05 08:49:20 -07:00
|
|
|
eq({1, 1}, curbufmeths.get_mark('z'))
|
|
|
|
end)
|
|
|
|
it('works with file/uppercase marks', function()
|
|
|
|
curbufmeths.set_lines(-1, -1, true, {'a', 'bit of', 'text'})
|
2021-11-01 06:46:26 -07:00
|
|
|
eq(true, curbufmeths.set_mark('Z', 3, 1, {}))
|
2021-10-05 08:49:20 -07:00
|
|
|
eq({3, 1}, curbufmeths.get_mark('Z'))
|
|
|
|
end)
|
|
|
|
it('fails when invalid marks names are used', function()
|
2021-11-01 06:46:26 -07:00
|
|
|
eq(false, pcall(curbufmeths.set_mark, '!', 1, 0, {}))
|
|
|
|
eq(false, pcall(curbufmeths.set_mark, 'fail', 1, 0, {}))
|
2021-10-05 08:49:20 -07:00
|
|
|
end)
|
|
|
|
it('fails when invalid buffer number is used', function()
|
2021-11-01 06:46:26 -07:00
|
|
|
eq(false, pcall(meths.buf_set_mark, 99, 'a', 1, 1, {}))
|
2021-10-05 08:49:20 -07:00
|
|
|
end)
|
|
|
|
end)
|
|
|
|
|
|
|
|
describe('nvim_buf_del_mark', function()
|
|
|
|
it('works with buffer local marks', function()
|
|
|
|
curbufmeths.set_lines(-1, -1, true, {'a', 'bit of', 'text'})
|
2021-11-01 06:46:26 -07:00
|
|
|
curbufmeths.set_mark('z', 3, 1, {})
|
2021-10-05 08:49:20 -07:00
|
|
|
eq(true, curbufmeths.del_mark('z'))
|
|
|
|
eq({0, 0}, curbufmeths.get_mark('z'))
|
|
|
|
end)
|
|
|
|
it('works with file/uppercase marks', function()
|
|
|
|
curbufmeths.set_lines(-1, -1, true, {'a', 'bit of', 'text'})
|
2021-11-01 06:46:26 -07:00
|
|
|
curbufmeths.set_mark('Z', 3, 3, {})
|
2021-10-05 08:49:20 -07:00
|
|
|
eq(true, curbufmeths.del_mark('Z'))
|
|
|
|
eq({0, 0}, curbufmeths.get_mark('Z'))
|
|
|
|
end)
|
|
|
|
it('returns false in marks not set in this buffer', function()
|
|
|
|
local abuf = meths.create_buf(false,true)
|
|
|
|
bufmeths.set_lines(abuf, -1, -1, true, {'a', 'bit of', 'text'})
|
2021-11-01 06:46:26 -07:00
|
|
|
bufmeths.set_mark(abuf, 'A', 2, 2, {})
|
2021-10-05 08:49:20 -07:00
|
|
|
eq(false, curbufmeths.del_mark('A'))
|
|
|
|
eq({2, 2}, bufmeths.get_mark(abuf, 'A'))
|
|
|
|
end)
|
|
|
|
it('returns false if mark was not deleted', function()
|
|
|
|
curbufmeths.set_lines(-1, -1, true, {'a', 'bit of', 'text'})
|
2021-11-01 06:46:26 -07:00
|
|
|
curbufmeths.set_mark('z', 3, 1, {})
|
2021-10-05 08:49:20 -07:00
|
|
|
eq(true, curbufmeths.del_mark('z'))
|
|
|
|
eq(false, curbufmeths.del_mark('z')) -- Mark was already deleted
|
|
|
|
end)
|
|
|
|
it('fails when invalid marks names are used', function()
|
|
|
|
eq(false, pcall(curbufmeths.del_mark, '!'))
|
|
|
|
eq(false, pcall(curbufmeths.del_mark, 'fail'))
|
|
|
|
end)
|
|
|
|
it('fails when invalid buffer number is used', function()
|
|
|
|
eq(false, pcall(meths.buf_del_mark, 99, 'a'))
|
|
|
|
end)
|
|
|
|
end)
|
2014-10-08 09:56:01 -07:00
|
|
|
end)
|