Fix #2636: remove ctrl-6 browser bind on Windows

This commit is contained in:
Oliver Blanthorn 2020-07-25 15:27:04 +01:00
parent cb18daa7eb
commit 50e6c25913
No known key found for this signature in database
GPG key ID: 2BB8C36BB504BFF3
2 changed files with 18 additions and 1 deletions

View file

@ -1061,6 +1061,22 @@ export class default_config {
} }
const windows_defaults = { 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 } as default_config

View file

@ -24,7 +24,8 @@
}, },
"command_2": { "command_2": {
"suggested_key": { "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." "description": "Internal use. See `:help bind`. Use `:bind --mode=browser` to change - do not change here."
}, },