Skip to content

Commit

Permalink
fix(core): Fixed a bug with :H not supporting completion
Browse files Browse the repository at this point in the history
  • Loading branch information
OXY2DEV committed Feb 5, 2025
1 parent b6bda1a commit 60c8ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/helpview.lua
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ end, {
nargs = "?",

complete = function (_, cmd, cursorpos)
local before = string.sub(cmd, 0, cursorpos):gsub("^Help%s*", "");
local before = string.sub(cmd, 0, cursorpos):gsub("^H%s*", "");

local parts = {};

Expand Down

0 comments on commit 60c8ca3

Please sign in to comment.