Skip to content

Commit 2df38e0

Browse files
committed
test: add missing module
The old "forgot to run `git-add`" trick.
1 parent 10495da commit 2df38e0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
-- SPDX-FileCopyrightText: Copyright 2025-present Greg Hurrell and contributors.
2+
-- SPDX-License-Identifier: BSD-2-Clause
3+
4+
local M = {}
5+
6+
function M.setup()
7+
if _G.vim == nil then
8+
_G.vim = {}
9+
end
10+
11+
_G.vim.inspect = function(value)
12+
return '<inspect:' .. type(value) .. '>'
13+
end
14+
end
15+
16+
return M

0 commit comments

Comments
 (0)