-
-
Notifications
You must be signed in to change notification settings - Fork 27
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
Misc enhancements #96
base: main
Are you sure you want to change the base?
Conversation
A user's machine may have the sequence.editor set, which may configure a separate editor rebases. Add instructions to unset sequence.editor, making Commit the default editor.
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.
Thanks, appreciate the help!
git_text.label = `<tt>git config --global core.editor "${command}"</tt>`; | ||
git_text.label = `<tt>git config --global core.editor "${command}"\n` + | ||
'git config --global --unset sequence.editor</tt>'; |
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.
I have 2 issues with this
- Commit isn't a very good rebase editor rfc: Add dedicated rebase UI? #81
- I don't want to make the command too complicated.
Slightly off-topic but now that Commit
has read/write permissions to the user home directory, we could remove the commands and use buttons that run the commands directly.
Similar to Junction
I'll think about it for the next release.
settings.bind( | ||
"window-width", | ||
window, | ||
"default-width", | ||
Gio.SettingsBindFlags.DEFAULT, | ||
); | ||
|
||
settings.bind( | ||
"window-height", | ||
window, | ||
"default-height", | ||
Gio.SettingsBindFlags.DEFAULT, | ||
); | ||
|
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.
Why do you want Commit to remember window size?
Just a couple ideas...