-
Notifications
You must be signed in to change notification settings - Fork 3.5k
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
C-f works but C-M-f doesn't #6337
Comments
Can you write these shortcuts in full? |
This much would have been enough.
There is no preference pane, the config file opens when you use the preference menu item or do cmd+, Lines 48 to 51 in f79006b
modifierKeys in your config if you need that option.
Anyways you can move forward and backward by using option+right or option+left or change the keybindings for them to anything else Lines 44 to 45 in fe57118
|
The point here is that macOS supports these keybindings out of the box, and this breaks in Hyper. All I’m saying is Hyper should have these keybindings by default, in order to match the standard (both GUI and terminal) behavior of macOS. |
I can't seem to get I want to use Example outputs of pressing
My "use strict";
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
//...snip
macOptionSelectionMode: 'vertical',
modifierKeys: {
altIsMeta: true,
cmdIsMeta: false,
},
//...snip
}
} I've saved the config, and restarted Hyper after each change to the config file, but it does not seem to change the mapping of the ALT/Option key. Using: Hyper 3.2.3 (stable) Possibly related issues: |
on macOS, in all standard applications, terminal.app, spotlight, C-M-f goes forward by a word, C-M-b backwards, in Hyper, it does nothing. C-f, C-b, C-a, C-e seem to work fine.
if only the preferences pane would open so I could see if there is an option to enable Meta.
The text was updated successfully, but these errors were encountered: