Skip to content

Commit c01db22

Browse files
committed
Use markdown in validate help
1 parent 3fd5223 commit c01db22

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/neogit/popups/log/init.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ function M.create()
2222
:switch("L", "L", "Trace line evolution", {
2323
user_input = true,
2424
cli_prefix = "-",
25-
validate_help = "Input must match 'start,end:file' or ':funcname:file'",
25+
validate_help = "Input must match `start,end:file` or `:funcname:file`",
2626
validate = function(input)
2727
return (input:match("^%d+,%d+:.-$") ~= nil) or (input:match("^:.-:.-$") ~= nil)
2828
end,

0 commit comments

Comments
 (0)