-
-
Notifications
You must be signed in to change notification settings - Fork 112
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
Instead of option_as_alt introduce command_as_alt and fix behaviour #1718
base: master
Are you sure you want to change the base?
Changes from all commits
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 |
---|---|---|
|
@@ -445,7 +445,7 @@ struct TerminalProfile | |
ConfigEntry<HyperlinkDecorationConfig, documentation::HyperlinkDecoration> hyperlinkDecoration {}; | ||
|
||
ConfigEntry<std::string, documentation::WMClass> wmClass { CONTOUR_APP_ID }; | ||
ConfigEntry<bool, documentation::OptionKeyAsAlt> optionKeyAsAlt { false }; | ||
ConfigEntry<bool, documentation::CommandKeyAsAlt> commandKeyAsAlt { true }; | ||
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. do we really want to default to 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. I think that this is better for the default since user do not need to tweak config to use Alt+something key mappings on mac |
||
}; | ||
|
||
const InputMappings defaultInputMappings { | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -246,7 +246,7 @@ profiles: | |
# This value is ignored on other platforms. | ||
# | ||
# Default: false | ||
option_as_alt: false | ||
command_as_alt: false | ||
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. above it says default is true, here false 🤔 |
||
|
||
# Environment variables to be passed to the shell. | ||
# environment: | ||
|
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.
option_as_alt was not removed?
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.
ah, looks like it was not there since config refactor. oops :)