mirror of
https://github.com/neovim/neovim.git
synced 2026-08-29 10:31:48 +00:00
refactor: rename _extui => _core.ui2 #37692
Problem: _extui module name is confusing and should eventually end up in _core/. Solution: Move it there and name it ui2.
This commit is contained in:
@@ -16,7 +16,7 @@ describe('cmdline2', function()
|
||||
[101] = { background = Screen.colors.Yellow, foreground = Screen.colors.Grey0 },
|
||||
})
|
||||
exec_lua(function()
|
||||
require('vim._extui').enable({})
|
||||
require('vim._core.ui2').enable({})
|
||||
end)
|
||||
end)
|
||||
|
||||
@@ -245,7 +245,7 @@ describe('cmdline2', function()
|
||||
clear({
|
||||
args = {
|
||||
'--clean',
|
||||
'+lua require("vim._extui").enable({})',
|
||||
'+lua require("vim._core.ui2").enable({})',
|
||||
"+call feedkeys(':')",
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user