mirror of
https://github.com/neovim/neovim
synced 2025-07-15 16:51:49 +00:00
Problem: `termopen` has long been a superficial wrapper around `jobstart`, and has no real purpose. Also, `vim.system` and `nvim_open_term` presumably will replace all features of `jobstart` and `termopen`, so centralizing the logic will help with that. Solution: - Introduce `eval/deprecated.c`, where all deprecated eval funcs will live. - Introduce "term" flag of `jobstart`. - Deprecate `termopen`.
63 lines
2.0 KiB
Lua
63 lines
2.0 KiB
Lua
-- Normal mode tests.
|
||
|
||
local t = require('test.testutil')
|
||
local n = require('test.functional.testnvim')()
|
||
local Screen = require('test.functional.ui.screen')
|
||
|
||
local clear = n.clear
|
||
local feed = n.feed
|
||
local fn = n.fn
|
||
local command = n.command
|
||
local eq = t.eq
|
||
local api = n.api
|
||
|
||
describe('Normal mode', function()
|
||
before_each(clear)
|
||
|
||
it('setting &winhighlight or &winblend does not change curswant #27470', function()
|
||
fn.setline(1, { 'long long lone line', 'short line' })
|
||
feed('ggfi')
|
||
local pos = fn.getcurpos()
|
||
feed('j')
|
||
command('setlocal winblend=10 winhighlight=Visual:Search')
|
||
feed('k')
|
||
eq(pos, fn.getcurpos())
|
||
end)
|
||
|
||
it('&showcmd does not crash with :startinsert #28419', function()
|
||
local screen = Screen.new(60, 17)
|
||
fn.jobstart({ n.nvim_prog, '--clean', '--cmd', 'startinsert' }, {
|
||
term = true,
|
||
env = { VIMRUNTIME = os.getenv('VIMRUNTIME') },
|
||
})
|
||
screen:expect({
|
||
grid = [[
|
||
^ |
|
||
~ |*13
|
||
[No Name] 0,1 All|
|
||
-- INSERT -- |
|
||
|
|
||
]],
|
||
attr_ids = {},
|
||
})
|
||
end)
|
||
|
||
it('replacing with ZWJ emoji sequences', function()
|
||
local screen = Screen.new(30, 8)
|
||
api.nvim_buf_set_lines(0, 0, -1, true, { 'abcdefg' })
|
||
feed('05r🧑🌾') -- ZWJ
|
||
screen:expect([[
|
||
🧑🌾🧑🌾🧑🌾🧑🌾^🧑🌾fg |
|
||
{1:~ }|*6
|
||
|
|
||
]])
|
||
|
||
feed('2r🏳️⚧️') -- ZWJ and variant selectors
|
||
screen:expect([[
|
||
🧑🌾🧑🌾🧑🌾🧑🌾🏳️⚧️^🏳️⚧️g |
|
||
{1:~ }|*6
|
||
|
|
||
]])
|
||
end)
|
||
end)
|