Skip to content

Commit 7c15882

Browse files
committed
fix: letter-based navigation in file explorer
Fixes microsoft#179528
1 parent 252e546 commit 7c15882

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vs/platform/list/browser/listService.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -816,7 +816,7 @@ function createKeyboardNavigationEventFilter(keybindingService: IKeybindingServi
816816
}
817817

818818
inMultiChord = false;
819-
return !result;
819+
return result === null || result.kind === ResultKind.NoMatchingKb;
820820
};
821821
}
822822

0 commit comments

Comments
 (0)