summaryrefslogtreecommitdiffstatshomepage
path: root/test/functional/vimscript
diff options
context:
space:
mode:
authorluukvbaal <luukvbaal@gmail.com>2026-02-05 13:45:45 +0100
committerGitHub <noreply@github.com>2026-02-05 07:45:45 -0500
commitbf68ba40a03a19c97454ede293ed289c547b5aaa (patch)
tree53f3821163d426296a5173d550fd535af5383e7c /test/functional/vimscript
parentb95e0a8d20b73ec1989a373b76b9b0e828ad540f (diff)
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.
Diffstat (limited to 'test/functional/vimscript')
-rw-r--r--test/functional/vimscript/screenchar_spec.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/functional/vimscript/screenchar_spec.lua b/test/functional/vimscript/screenchar_spec.lua
index cb43c189c3..ba653d9942 100644
--- a/test/functional/vimscript/screenchar_spec.lua
+++ b/test/functional/vimscript/screenchar_spec.lua
@@ -105,7 +105,7 @@ describe('screenchar() and family respect floating windows', function()
end)
it('from ui2', function()
- n.exec_lua('require("vim._extui").enable({ enable = true })')
+ n.exec_lua('require("vim._core.ui2").enable({ enable = true })')
command('echo "foo"')
assert_screen_funcs()