We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb001ff commit 283991bCopy full SHA for 283991b
pkg/config/user_config_validation.go
@@ -154,7 +154,8 @@ func validateCustomCommands(customCommands []CustomCommand) error {
154
func validateCustomCommandPrompt(prompt CustomCommandPrompt) error {
155
for _, option := range prompt.Options {
156
if !isValidKeybindingKey(option.Key) {
157
- return fmt.Errorf("Unexpected prompt option keybind: %s", option.Key)
+ return fmt.Errorf("Unrecognized key '%s' for custom command prompt option. For permitted values see %s",
158
+ option.Key, constants.Links.Docs.CustomKeybindings)
159
}
160
161
0 commit comments