Skip to content

Commit

Permalink
some 💄 and removal of conflicting keybinding, #15533
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Aug 18, 2021
1 parent 45c8224 commit f0f1941
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ import { ICodeEditorService } from 'vs/editor/browser/services/codeEditorService
import { Position } from 'vs/editor/common/core/position';
import { Range } from 'vs/editor/common/core/range';
import { IEditorContribution } from 'vs/editor/common/editorCommon';
import { EditorContextKeys } from 'vs/editor/common/editorContextKeys';
import { PeekContext } from 'vs/editor/contrib/peekView/peekView';
import { localize } from 'vs/nls';
import { MenuId, registerAction2 } from 'vs/platform/actions/common/actions';
Expand Down Expand Up @@ -184,11 +183,6 @@ registerAction2(class extends EditorAction2 {
PeekContext.notInPeekEditor
),
},
keybinding: {
when: EditorContextKeys.editorTextFocus,
weight: KeybindingWeight.WorkbenchContrib,
primary: KeyMod.Shift + KeyMod.Alt + KeyCode.KEY_H // TODO: to specify a proper keybinding?
},
precondition: ContextKeyExpr.and(
_ctxHasTypeHierarchyProvider,
PeekContext.notInPeekEditor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export const enum TypeHierarchyDirection {
export interface TypeHierarchyItem {
_sessionId: string;
_itemId: string;
name: string;
kind: SymbolKind;
name: string;
detail?: string;
uri: URI;
range: IRange;
Expand Down

0 comments on commit f0f1941

Please sign in to comment.