feat(dev-menu): add Excalidraw as item 16#25
Merged
Conversation
Wire the existing tools/scripts/excalidraw.sh into the Dev menu using the same run_dev_script + dev_repo_path pattern as the other entries. Previously Excalidraw was only reachable via `mqlaunch excalidraw` command-mode; the Apps menu that listed it (open_apps_menu) is defined but never invoked from the main menu, so it was effectively unreachable from the TUI. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Wire the existing
tools/scripts/excalidraw.shinto the Dev menu as item 16, using the samerun_dev_script+dev_repo_pathpattern as the other entries.Why
Excalidraw was only reachable via
mqlaunch excalidrawcommand-mode. The Apps menu that listed it (open_apps_menu) is defined but never invoked from the main menu, so it was effectively unreachable from the TUI. This puts Excalidraw one keystroke from the main menu: 5. Dev → 16. Excalidraw.Changes
terminal/menus/mq-dev-menu.sh15. Comment scripts 16. Excalidraw16) run_dev_script "EXCALIDRAW" "$(dev_repo_path "tools/scripts/excalidraw.sh")"Verification
bash -n mq-dev-menu.shparses clean16routes toEXCALIDRAWwith the correct resolved path,rc=0🤖 Generated with Claude Code