Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
11|│ bang = false, │
12|│ bar = false, │
13|│ definition = "lua _G.my_command = true", │
14|│ keepscript = false,
15|│ name = "MyCommand", │
16|│ nargs = "0",
17|│ register = false,
18|│ script_id = -10
19|│}
20|│
14|│ desc = "",
15|│ keepscript = false, │
16|│ name = "MyCommand",
17|│ nargs = "0",
18|│ register = false,
19|│ script_id = -10
20|│}
21|│ │
22|│ │
23|│ │
24|└ Commands ─────────────────────────── 1|2|585
24|└ Commands ─────────────────────────── 1|2|588
25|

--|---------|---------|---------|---------|---------|---------|---------|-----
Expand All @@ -45,7 +45,7 @@
17|244444444444444444444444444444444444444444444442111111111111111111111111111
18|244444444444444444444444444444444444444444444442111111111111111111111111111
19|244444444444444444444444444444444444444444444442111111111111111111111111111
20|255555555555555555555555555555555555555555555552111111111111111111111111111
20|244444444444444444444444444444444444444444444442111111111111111111111111111
21|255555555555555555555555555555555555555555555552111111111111111111111111111
22|255555555555555555555555555555555555555555555552111111111111111111111111111
23|255555555555555555555555555555555555555555555552111111111111111111111111111
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@
11|│ bang = false, │
12|│ bar = false, │
13|│ definition = "lua _G.my_command_buf = true",│
14|│ keepscript = false,
15|│ name = "MyCommandBuf",
16|│ nargs = "*",
17|│ register = false,
18|│ script_id = -10
19|│}
20|│
14|│ desc = "",
15|│ keepscript = false,
16|│ name = "MyCommandBuf",
17|│ nargs = "*",
18|│ register = false,
19|│ script_id = -10
20|│}
21|│ │
22|│ │
23|│ │
24|└ Commands ─────────────────────────── 2|2|585
24|└ Commands ─────────────────────────── 2|2|588
25|

--|---------|---------|---------|---------|---------|---------|---------|-----
Expand All @@ -45,7 +45,7 @@
17|244444444444444444444444444444444444444444444442111111111111111111111111111
18|244444444444444444444444444444444444444444444442111111111111111111111111111
19|244444444444444444444444444444444444444444444442111111111111111111111111111
20|255555555555555555555555555555555555555555555552111111111111111111111111111
20|244444444444444444444444444444444444444444444442111111111111111111111111111
21|255555555555555555555555555555555555555555555552111111111111111111111111111
22|255555555555555555555555555555555555555555555552111111111111111111111111111
23|255555555555555555555555555555555555555555555552111111111111111111111111111
Expand Down
4 changes: 2 additions & 2 deletions tests/test_extra.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1121,9 +1121,9 @@ end

T['pickers']['commands()']['respects user commands'] = function()
local expect_screenshot = function(...)
-- Screenshots are generated for Neovim>=0.12, since the output structure
-- Screenshots are generated for Neovim>=0.13, since the output structure
-- of `nvim_get_commands()` has changed
if child.fn.has('nvim-0.12') == 0 then return end
if child.fn.has('nvim-0.13') == 0 then return end
child.expect_screenshot(...)
end

Expand Down
Loading