chore: sync
This commit is contained in:
parent
987e1a3341
commit
9357574b5c
@ -91,11 +91,7 @@ end
|
|||||||
---@return integer
|
---@return integer
|
||||||
function buffer:line_count()
|
function buffer:line_count()
|
||||||
local line_count = api.nvim_buf_line_count(self.bufnr)
|
local line_count = api.nvim_buf_line_count(self.bufnr)
|
||||||
if line_count == 1 and self[1] == '' then
|
return line_count == 1 and self[1] == '' and 0 or line_count
|
||||||
return 0
|
|
||||||
end
|
|
||||||
|
|
||||||
return line_count
|
|
||||||
end
|
end
|
||||||
|
|
||||||
---Set line content
|
---Set line content
|
||||||
@ -151,11 +147,11 @@ buffer.__index = function(self, key)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
buffer.__newindex = function(self, key, nodes)
|
buffer.__newindex = function(self, key, values)
|
||||||
if type(key) == 'number' then
|
if type(key) == 'number' then
|
||||||
self:setline(nodes, key)
|
self:setline(values, key)
|
||||||
else
|
else
|
||||||
rawset(self, key, nodes)
|
rawset(self, key, values)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -164,8 +164,6 @@ window.__index = window
|
|||||||
---|{style: string, border: string, focusable: boolean, noautocmd?: boolean, relative: 'mouse'|'cursor'|'editor'|'win', width: integer, height: integer, col: integer, row: integer, zindex?: integer, title?: table | string}
|
---|{style: string, border: string, focusable: boolean, noautocmd?: boolean, relative: 'mouse'|'cursor'|'editor'|'win', width: integer, height: integer, col: integer, row: integer, zindex?: integer, title?: table | string}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
---@class TransWindow
|
---@class TransWindow
|
||||||
---@field buffer TransBuffer attached buffer object
|
---@field buffer TransBuffer attached buffer object
|
||||||
---@field win_opts table window config [**When open**]
|
---@field win_opts table window config [**When open**]
|
||||||
|
@ -82,9 +82,9 @@ describe('util.is_word', function()
|
|||||||
for test, value in pairs {
|
for test, value in pairs {
|
||||||
['あうえお'] = false,
|
['あうえお'] = false,
|
||||||
['hello'] = true,
|
['hello'] = true,
|
||||||
|
[' hello'] = false,
|
||||||
['hello world'] = false,
|
['hello world'] = false,
|
||||||
['test_cool'] = false,
|
['test_cool'] = false,
|
||||||
[' hello'] = false,
|
|
||||||
} do
|
} do
|
||||||
assert.are.same(util.is_word(test), value)
|
assert.are.same(util.is_word(test), value)
|
||||||
end
|
end
|
||||||
|
@ -29,20 +29,24 @@ describe('window', with_buffer(function(buffer)
|
|||||||
|
|
||||||
describe('smooth_expand', function()
|
describe('smooth_expand', function()
|
||||||
it('can work well when no pass animation table', function()
|
it('can work well when no pass animation table', function()
|
||||||
window:smooth_expand { field = 'width', to = 10 }
|
for field, values in pairs {
|
||||||
assert.are.same(window:width(), 10)
|
width = {
|
||||||
|
10,
|
||||||
window:smooth_expand { field = 'width', to = 6 }
|
6,
|
||||||
assert.are.same(window:width(), 6)
|
8,
|
||||||
|
5,
|
||||||
window:smooth_expand { field = 'height', to = 10 }
|
},
|
||||||
assert.are.same(window:height(), 10)
|
height = {
|
||||||
|
10,
|
||||||
window:smooth_expand { field = 'height', to = 6 }
|
6,
|
||||||
assert.are.same(window:height(), 6)
|
3,
|
||||||
|
},
|
||||||
window:smooth_expand { field = 'height', to = 6 }
|
} do
|
||||||
assert.are.same(window:height(), 6)
|
for _, value in ipairs(values) do
|
||||||
|
window:smooth_expand { field = field, to = value }
|
||||||
|
assert.are.same(value, window[field](window))
|
||||||
|
end
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
|
|
||||||
it("don't change window wrap option", function()
|
it("don't change window wrap option", function()
|
||||||
@ -68,4 +72,29 @@ describe('window', with_buffer(function(buffer)
|
|||||||
window:resize { width = 5, height = 5 }
|
window:resize { width = 5, height = 5 }
|
||||||
assert.is_true(window:option 'wrap')
|
assert.is_true(window:option 'wrap')
|
||||||
end)
|
end)
|
||||||
|
|
||||||
|
it('adjust_height() can auto adjust window height to buffer display height', function()
|
||||||
|
for idx, content in ipairs {
|
||||||
|
'cool',
|
||||||
|
'co10',
|
||||||
|
'家👍',
|
||||||
|
'👍ol',
|
||||||
|
'cあl',
|
||||||
|
'家野',
|
||||||
|
} do
|
||||||
|
buffer[idx] = content
|
||||||
|
end
|
||||||
|
|
||||||
|
local max_height = vim.o.lines - 2
|
||||||
|
for width, expect in ipairs {
|
||||||
|
[2] = 12,
|
||||||
|
[3] = 12,
|
||||||
|
[4] = 6,
|
||||||
|
[5] = 6,
|
||||||
|
} do
|
||||||
|
window:smooth_expand { field = 'width', to = width }
|
||||||
|
window:adjust_height()
|
||||||
|
assert.are.same(math.min(expect, max_height), window:height())
|
||||||
|
end
|
||||||
|
end)
|
||||||
end))
|
end))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user