refactor(struct-tags): give input field better name

This commit is contained in:
Oleksandr Smirnov 2025-10-29 13:29:46 +02:00
parent 92625cc6e3
commit 848a9dbe97
No known key found for this signature in database
2 changed files with 5 additions and 5 deletions

View file

@ -48,7 +48,7 @@ end)
-- :GoTag
cmd("GoTagAdd", function(opts)
require("gopher").tags.add {
tags = opts.fargs,
input = opts.fargs,
range = (opts.count ~= -1) and {
start = opts.line1,
end_ = opts.line2,
@ -58,7 +58,7 @@ end, "*", true)
cmd("GoTagRm", function(opts)
require("gopher").tags.rm {
tags = opts.fargs,
input = opts.fargs,
range = (opts.count ~= -1) and {
start = opts.line1,
end_ = opts.line2,