mirror of
https://github.com/vale981/tridactyl
synced 2025-03-05 17:41:40 -05:00
Fix #2636: remove ctrl-6 browser bind on Windows
This commit is contained in:
parent
cb18daa7eb
commit
50e6c25913
2 changed files with 18 additions and 1 deletions
|
@ -1061,6 +1061,22 @@ export class default_config {
|
|||
}
|
||||
|
||||
const windows_defaults = {
|
||||
browsermaps: {
|
||||
"<C-6>": null,
|
||||
"<A-6>": "buffer #",
|
||||
} as unknown, // typescript doesn't like me adding new binds like this
|
||||
nmaps: {
|
||||
"<C-6>": "buffer #",
|
||||
} as unknown,
|
||||
imaps: {
|
||||
"<C-6>": "buffer #",
|
||||
} as unknown,
|
||||
inputmaps: {
|
||||
"<C-6>": "buffer #",
|
||||
} as unknown,
|
||||
ignoremaps: {
|
||||
"<C-6>": "buffer #",
|
||||
} as unknown,
|
||||
} as default_config
|
||||
|
||||
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
},
|
||||
"command_2": {
|
||||
"suggested_key": {
|
||||
"default": "MacCtrl+6"
|
||||
"default": "MacCtrl+6",
|
||||
"windows": "Alt+6"
|
||||
},
|
||||
"description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here."
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue