-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Add zmx-backed workspace/session persistence #510
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
9ac001c
6d6a1c1
9c5e6e5
d0cc0c1
8f95737
1ceb78b
422297c
1fa0a59
dc986bf
6bf7ef8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| [submodule "ghostty"] | ||
| path = ghostty | ||
| url = https://github.com/manaflow-ai/ghostty.git | ||
| branch = main | ||
| url = https://github.com/mdsakalu/ghostty.git | ||
| branch = zmx-termio-backend | ||
|
Comment on lines
+3
to
+4
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧩 Analysis chain🏁 Script executed: #!/bin/bash
# Verify the ghostty submodule commit exists on the remote fork
# Get the submodule commit SHA
cd ghostty 2>/dev/null && COMMIT=$(git rev-parse HEAD) && cd ..
if [ -n "$COMMIT" ]; then
echo "Submodule commit: $COMMIT"
# Check if commit exists on remote
git ls-remote https://github.com/mdsakalu/ghostty.git | grep -q "$COMMIT" && echo "✓ Commit exists on remote" || echo "✗ Commit NOT found on remote"
else
echo "Could not determine submodule commit"
fi
# Check if fork documentation exists
echo ""
echo "Checking for fork documentation:"
fd -t f "ghostty-fork.md" docs/ 2>/dev/null || echo "docs/ghostty-fork.md not found"Repository: manaflow-ai/cmux Length of output: 202 🏁 Script executed: cat docs/ghostty-fork.mdRepository: manaflow-ai/cmux Length of output: 1724 This PR violates critical submodule management requirements and cannot be merged as-is. Two blocking issues:
Per repository guidelines: submodule commits must exist on their remote branch before the parent repo can reference them, and fork documentation must be kept in sync with actual fork changes. 🤖 Prompt for AI Agents |
||
| [submodule "homebrew-cmux"] | ||
| path = homebrew-cmux | ||
| url = https://github.com/manaflow-ai/homebrew-cmux.git | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
P2: Use the organization-maintained Ghostty fork for the submodule URL instead of a personal fork to avoid a brittle build dependency.
Prompt for AI agents