mirror of
https://github.com/node-red/node-red.git
synced 2023-10-10 13:36:53 +02:00
Fix handling of + in shortcuts
This commit is contained in:
parent
39532a9d65
commit
916d377aaa
@ -3,7 +3,7 @@
|
|||||||
"alt-shift-p":"core:manage-palette",
|
"alt-shift-p":"core:manage-palette",
|
||||||
"ctrl-f": "core:search",
|
"ctrl-f": "core:search",
|
||||||
"ctrl-shift-f": "core:list-flows",
|
"ctrl-shift-f": "core:list-flows",
|
||||||
"ctrl-=": "core:zoom-in",
|
"ctrl-+": "core:zoom-in",
|
||||||
"ctrl--": "core:zoom-out",
|
"ctrl--": "core:zoom-out",
|
||||||
"ctrl-0": "core:zoom-reset",
|
"ctrl-0": "core:zoom-reset",
|
||||||
"ctrl-enter": "core:confirm-edit-tray",
|
"ctrl-enter": "core:confirm-edit-tray",
|
||||||
|
@ -34,6 +34,7 @@ RED.keyboard = (function() {
|
|||||||
"space": 32,
|
"space": 32,
|
||||||
";":186,
|
";":186,
|
||||||
"=":187,
|
"=":187,
|
||||||
|
"+":187, // <- QWERTY specific
|
||||||
",":188,
|
",":188,
|
||||||
"-":189,
|
"-":189,
|
||||||
".":190,
|
".":190,
|
||||||
|
Loading…
Reference in New Issue
Block a user