Update all occurrences of option_as_meta to new default value (#19369)

This PR is a quick follow-up to #19364 which updates some left-out
occurrences of `option_as_meta` to the new default value (`false`).
This commit is contained in:
Finn Evers 2024-10-17 17:21:07 +02:00 committed by GitHub
parent 4be9da2641
commit e9e4c770ca
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -712,10 +712,10 @@
// May take 2 values: // May take 2 values:
// 1. Rely on default platform handling of option key, on macOS // 1. Rely on default platform handling of option key, on macOS
// this means generating certain unicode characters // this means generating certain unicode characters
// "option_to_meta": false, // "option_as_meta": false,
// 2. Make the option keys behave as a 'meta' key, e.g. for emacs // 2. Make the option keys behave as a 'meta' key, e.g. for emacs
// "option_to_meta": true, // "option_as_meta": true,
"option_as_meta": true, "option_as_meta": false,
// Whether or not selecting text in the terminal will automatically // Whether or not selecting text in the terminal will automatically
// copy to the system clipboard. // copy to the system clipboard.
"copy_on_select": false, "copy_on_select": false,

View file

@ -1732,7 +1732,7 @@ See Buffer Font Features
- Description: Re-interprets the option keys to act like a 'meta' key, like in Emacs. - Description: Re-interprets the option keys to act like a 'meta' key, like in Emacs.
- Setting: `option_as_meta` - Setting: `option_as_meta`
- Default: `true` - Default: `false`
**Options** **Options**