You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: support function for external_terminal_cmd configuration (#119)
* feat: support function for external_terminal_cmd configuration
Allow external_terminal_cmd to be either a string template with %s
placeholder
or a function that receives (cmd, env) and returns the command to
execute.
This enables more dynamic terminal command generation based on
environment
or runtime conditions.
Examples:
- String: "alacritty -e %s"
- Function: function(cmd, env) return { "osascript", "-e", ... } end
* fix: fix unit tests
0 commit comments