diff options
| author | Paul Buetow <paul@buetow.org> | 2025-10-03 23:50:49 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-10-03 23:50:49 +0300 |
| commit | 420b5aebf888c638ac096e1476c06eac979ac257 (patch) | |
| tree | 59434cbc37837399d7b5bc7920ffd7be62f1fc7d /internal/appconfig/config.go | |
| parent | e36a5446bc62842ae3b3e165f66fecb7285a8c6a (diff) | |
Switch inline prompt markers to >! prefixv0.15.1
Diffstat (limited to 'internal/appconfig/config.go')
| -rw-r--r-- | internal/appconfig/config.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/appconfig/config.go b/internal/appconfig/config.go index e5a8d5f..59ffd89 100644 --- a/internal/appconfig/config.go +++ b/internal/appconfig/config.go @@ -44,7 +44,7 @@ type App struct { TriggerCharacters []string `json:"trigger_characters" toml:"trigger_characters"` Provider string `json:"provider" toml:"provider"` - // Inline prompt trigger characters (default: >text> and >>text>) + // Inline prompt trigger characters (default: >!text> and >>!text>) InlineOpen string `json:"inline_open" toml:"inline_open"` InlineClose string `json:"inline_close" toml:"inline_close"` // In-editor chat triggers (default: suffix ">" after one of [?, !, :, ;]) @@ -141,7 +141,7 @@ func newDefaultConfig() App { CompletionDebounceMs: 800, CompletionThrottleMs: 0, // Inline/chat trigger defaults - InlineOpen: ">", + InlineOpen: ">!", InlineClose: ">", ChatSuffix: ">", ChatPrefixes: []string{"?", "!", ":", ";"}, |
