Issue Type: Bug
Starting with today's insiders -- the w key is bound to workbench.action.terminal.paste when terminalFocus
/cc @Tyriar
VS Code version: Code - Insiders 1.41.0-insider (fe03510f9e9fb269ca35da0ea600dd95279fa2b7, 2019-11-18T05:31:02.684Z)
OS version: Windows_NT x64 10.0.19025
System Info
|Item|Value|
|---|---|
|CPUs|Intel(R) Core(TM) i7-6700K CPU @ 4.00GHz (8 x 4008)|
|GPU Status|2d_canvas: enabled
flash_3d: enabled
flash_stage3d: enabled
flash_stage3d_baseline: enabled
gpu_compositing: enabled
metal: disabled_off
multiple_raster_threads: enabled_on
oop_rasterization: disabled_off
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: disabled_off
surface_control: disabled_off
surface_synchronization: enabled_on
video_decode: enabled
viz_display_compositor: enabled_on
viz_hit_test_surface_layer: disabled_off
webgl: enabled
webgl2: enabled|
|Load (avg)|undefined|
|Memory (System)|31.93GB (19.76GB free)|
|Process Argv||
|Screen Reader|no|
|VM|0%|
Same thing here, lol
+1

From default keybindings json:
{ "key": "w", "command": "workbench.action.terminal.paste",
"when": "terminalFocus" },
{ "key": "w", "command": "workbench.action.terminal.paste",
"when": "terminalFocus" },
Problem is https://github.com/microsoft/vscode/pull/84438 using KeyCode.Ctrl instead of KeyMod.CtrlCmd
Works as expected if you copy w before using the terminal 馃槅. Fix and new insiders coming soon.
Most helpful comment
Works as expected if you copy
wbefore using the terminal 馃槅. Fix and new insiders coming soon.