aboutsummaryrefslogtreecommitdiff
path: root/test/functional/api/buffer_spec.lua
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2018-10-30 23:20:23 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2018-11-01 15:05:05 +0100
commit281da0dd59fbc5aa7ff1c6f0300c661c1a62cb8c (patch)
treeacd2f3c9d84c7c73392a7379be78803621c8dda9 /test/functional/api/buffer_spec.lua
parent11b438eb6663b74149633b767061992c00496fb8 (diff)
downloadrneovim-281da0dd59fbc5aa7ff1c6f0300c661c1a62cb8c.tar.gz
rneovim-281da0dd59fbc5aa7ff1c6f0300c661c1a62cb8c.tar.bz2
rneovim-281da0dd59fbc5aa7ff1c6f0300c661c1a62cb8c.zip
api: implement nvim_buf_get_offset_for_line
Like line2byte, but works for any buffer, and uses zero-based indexing (API conventions).
Diffstat (limited to 'test/functional/api/buffer_spec.lua')
-rw-r--r--test/functional/api/buffer_spec.lua34
1 files changed, 34 insertions, 0 deletions
diff --git a/test/functional/api/buffer_spec.lua b/test/functional/api/buffer_spec.lua
index 271e196103..d3739c74d2 100644
--- a/test/functional/api/buffer_spec.lua
+++ b/test/functional/api/buffer_spec.lua
@@ -301,6 +301,40 @@ describe('api/buf', function()
end)
end)
+ describe('get_offset_for_line', function()
+ local get_offset_for_line = curbufmeths.get_offset_for_line
+ it('works', function()
+ curbufmeths.set_lines(0,-1,true,{'Some','exa\000mple', '', 'text'})
+ eq(4, curbufmeths.line_count())
+ eq(0, get_offset_for_line(0))
+ eq(5, get_offset_for_line(1))
+ eq(14, get_offset_for_line(2))
+ eq(15, get_offset_for_line(3))
+ eq(20, get_offset_for_line(4))
+ eq({false,'Index out of bounds'}, meth_pcall(get_offset_for_line, 5))
+ eq({false,'Index out of bounds'}, meth_pcall(get_offset_for_line, -1))
+
+ curbufmeths.set_option('eol', false)
+ curbufmeths.set_option('fixeol', false)
+ eq(19, get_offset_for_line(4))
+
+ curbufmeths.set_option('fileformat', 'dos')
+ eq(0, get_offset_for_line(0))
+ eq(6, get_offset_for_line(1))
+ eq(16, get_offset_for_line(2))
+ eq(18, get_offset_for_line(3))
+ eq(22, get_offset_for_line(4))
+ curbufmeths.set_option('eol', true)
+ eq(24, get_offset_for_line(4))
+
+ command("set hidden")
+ command("enew")
+ eq(6, bufmeths.get_offset_for_line(1,1))
+ command("bunload! 1")
+ eq(-1, bufmeths.get_offset_for_line(1,1))
+ end)
+ end)
+
describe('{get,set,del}_var', function()
it('works', function()
curbuf('set_var', 'lua', {1, 2, {['3'] = 1}})