File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
src/vs/platform/history/browser Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
113
113
when : ContextKeyExpr . and (
114
114
ContextKeyExpr . has ( HistoryNavigationWidgetFocusContext ) ,
115
115
ContextKeyExpr . equals ( HistoryNavigationBackwardsEnablementContext , true ) ,
116
+ ContextKeyExpr . not ( 'isComposing' ) ,
116
117
historyNavigationVisible . isEqualTo ( false ) ,
117
118
) ,
118
119
primary : KeyCode . UpArrow ,
@@ -128,6 +129,7 @@ KeybindingsRegistry.registerCommandAndKeybindingRule({
128
129
when : ContextKeyExpr . and (
129
130
ContextKeyExpr . has ( HistoryNavigationWidgetFocusContext ) ,
130
131
ContextKeyExpr . equals ( HistoryNavigationForwardsEnablementContext , true ) ,
132
+ ContextKeyExpr . not ( 'isComposing' ) ,
131
133
historyNavigationVisible . isEqualTo ( false ) ,
132
134
) ,
133
135
primary : KeyCode . DownArrow ,
You can’t perform that action at this time.
0 commit comments