mirror of
https://github.com/ghostty-org/ghostty.git
synced 2026-08-05 23:28:41 +00:00
This fixes the issue where an action with string as it's parameter is not working correctly in CommandPalette, found in #9671. For example: ``` command-palette-entry = title:"Set Ghostty Title",description:test sending text.,action:set_tab_title:👻 keybind=cmd+r=set_tab_title:👻 ``` Keybind works perfectly, but the title is escaped when triggering in CommandPalette. > Introduced in [#8873](https://github.com/ghostty-org/ghostty/pull/8873/changes#diff-9e7936787320bcf70e332c868125039d8c0a7f96c4a88f2af0af21d952c6830dR1216), I tested the fixed issue as well, the following config still parses correctly, mentioned in https://github.com/ghostty-org/ghostty/issues/8849#issuecomment-3322018212. ``` command-palette-entry = title:Focus Split: Next,description:"Focus the next split, if any.",action:goto_split:next ``` Also `ghostty +show-config` now will also output the readable strings as well. <img width="1078" height="428" alt="image" src="https://github.com/user-attachments/assets/f9dc1447-7b4e-44f4-8362-b54f4d805c7a" />