11 lines
238 B
Lua
11 lines
238 B
Lua
if vim.g.loaded_test_samurai then
|
|
return
|
|
end
|
|
vim.g.loaded_test_samurai = true
|
|
|
|
vim.api.nvim_create_user_command("TestNearest", function()
|
|
require("test-samurai").test_nearest()
|
|
end, {
|
|
desc = "Run nearest test with test-samurai",
|
|
})
|