mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 10:08:49 +01:00
inline hint for empty lines, right-click to hide, differentiate between empty line and suffix hint (#234773)
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import { Codicon } from '../../../../base/common/codicons.js';
|
||||
import { KeyChord, KeyCode, KeyMod } from '../../../../base/common/keyCodes.js';
|
||||
import { KeyCode, KeyMod } from '../../../../base/common/keyCodes.js';
|
||||
import { ICodeEditor, isCodeEditor, isDiffEditor } from '../../../../editor/browser/editorBrowser.js';
|
||||
import { EditorAction2 } from '../../../../editor/browser/editorExtensions.js';
|
||||
import { EmbeddedDiffEditorWidget } from '../../../../editor/browser/widget/diffEditor/embeddedDiffEditorWidget.js';
|
||||
@@ -62,8 +62,7 @@ export class StartSessionAction extends Action2 {
|
||||
keybinding: {
|
||||
when: EditorContextKeys.focus,
|
||||
weight: KeybindingWeight.WorkbenchContrib,
|
||||
primary: KeyMod.CtrlCmd | KeyCode.KeyI,
|
||||
secondary: [KeyChord(KeyMod.CtrlCmd | KeyCode.KeyK, KeyCode.KeyI)],
|
||||
primary: KeyMod.CtrlCmd | KeyCode.KeyI
|
||||
},
|
||||
icon: START_INLINE_CHAT,
|
||||
menu: {
|
||||
|
||||
Reference in New Issue
Block a user