@cisstech/nge
Version:
NG Essentials is a collection of libraries for Angular developers.
228 lines (227 loc) • 13.4 kB
TypeScript
/** Toggle High Contrast Theme */
export declare const ACTION_TOGGLE_HIGH_CONTRAST = "editor.action.toggleHighContrast";
/** Set Selection Anchor */
export declare const ACTION_SET_SELECTION_ANCHOR = "editor.action.setSelectionAnchor";
/** Move Selected Text Left */
export declare const ACTION_MOVE_CARRET_LEFT = "editor.action.moveCarretLeftAction";
/** Move Selected Text Right */
export declare const ACTION_MOVE_CARRET_RIGHT = "editor.action.moveCarretRightAction";
/** Transpose Letters */
export declare const ACTION_TRANSPOSE_LETTERS = "editor.action.transposeLetters";
/** Copy With Syntax Highlighting */
export declare const ACTION_CLIPBOARD_COPY_WITH_SYNTAX_HIGHLIGHTING = "editor.action.clipboardCopyWithSyntaxHighlightingAction";
/** Toggle Line Comment */
export declare const ACTION_COMMENT_LINE = "editor.action.commentLine";
/** Add Line Comment */
export declare const ACTION_ADD_COMMENT_LINE = "editor.action.addCommentLine";
/** Remove Line Comment */
export declare const ACTION_REMOVE_COMMENT_LINE = "editor.action.removeCommentLine";
/** Toggle Block Comment */
export declare const ACTION_BLOCK_COMMENT = "editor.action.blockComment";
/** Show Editor Context Menu */
export declare const ACTION_SHOW_CONTEXT_MENU = "editor.action.showContextMenu";
/** Cursor Undo */
export declare const ACTION_CURSOR_UNDO = "cursorUndo";
/** Cursor Redo */
export declare const ACTION_CURSOR_REDO = "cursorRedo";
/** Editor Font Zoom In */
export declare const ACTION_FONT_ZOOM_IN = "editor.action.fontZoomIn";
/** Editor Font Zoom Out */
export declare const ACTION_FONT_ZOOM_OUT = "editor.action.fontZoomOut";
/** Editor Font Zoom Reset */
export declare const ACTION_FONT_ZOOM_RESET = "editor.action.fontZoomReset";
/** Convert Indentation to Spaces */
export declare const ACTION_INDENTATION_TO_SPACES = "editor.action.indentationToSpaces";
/** Convert Indentation to Tabs */
export declare const ACTION_INDENTATION_TO_TABS = "editor.action.indentationToTabs";
/** Indent Using Tabs */
export declare const ACTION_INDENT_USING_TABS = "editor.action.indentUsingTabs";
/** Indent Using Spaces */
export declare const ACTION_INDENT_USING_SPACES = "editor.action.indentUsingSpaces";
/** Detect Indentation from Content */
export declare const ACTION_DETECT_INDENTATION = "editor.action.detectIndentation";
/** Reindent Lines */
export declare const ACTION_REINDENTLINES = "editor.action.reindentlines";
/** Reindent Selected Lines */
export declare const ACTION_REINDENTSELECTEDLINES = "editor.action.reindentselectedlines";
/** Copy Line Up */
export declare const ACTION_COPY_LINES_UP = "editor.action.copyLinesUpAction";
/** Copy Line Down */
export declare const ACTION_COPY_LINES_DOWN = "editor.action.copyLinesDownAction";
/** Duplicate Selection */
export declare const ACTION_DUPLICATE_SELECTION = "editor.action.duplicateSelection";
/** Move Line Up */
export declare const ACTION_MOVE_LINES_UP = "editor.action.moveLinesUpAction";
/** Move Line Down */
export declare const ACTION_MOVE_LINES_DOWN = "editor.action.moveLinesDownAction";
/** Sort Lines Ascending */
export declare const ACTION_SORT_LINES_ASCENDING = "editor.action.sortLinesAscending";
/** Sort Lines Descending */
export declare const ACTION_SORT_LINES_DESCENDING = "editor.action.sortLinesDescending";
/** Trim Trailing Whitespace */
export declare const ACTION_TRIM_TRAILING_WHITESPACE = "editor.action.trimTrailingWhitespace";
/** Delete Line */
export declare const ACTION_DELETE_LINES = "editor.action.deleteLines";
/** Indent Line */
export declare const ACTION_INDENT_LINES = "editor.action.indentLines";
/** Outdent Line */
export declare const ACTION_OUTDENT_LINES = "editor.action.outdentLines";
/** Insert Line Above */
export declare const ACTION_INSERT_LINE_BEFORE = "editor.action.insertLineBefore";
/** Insert Line Below */
export declare const ACTION_INSERT_LINE_AFTER = "editor.action.insertLineAfter";
/** Delete All Left */
export declare const ACTION_DELETE_ALL_LEFT = "deleteAllLeft";
/** Delete All Right */
export declare const ACTION_DELETE_ALL_RIGHT = "deleteAllRight";
/** Join Lines */
export declare const ACTION_JOIN_LINES = "editor.action.joinLines";
/** Transpose characters around the cursor */
export declare const ACTION_TRANSPOSE = "editor.action.transpose";
/** Transform to Uppercase */
export declare const ACTION_TRANSFORM_TO_UPPERCASE = "editor.action.transformToUppercase";
/** Transform to Lowercase */
export declare const ACTION_TRANSFORM_TO_LOWERCASE = "editor.action.transformToLowercase";
/** Transform to Title Case */
export declare const ACTION_TRANSFORM_TO_TITLECASE = "editor.action.transformToTitlecase";
/** Expand Selection */
export declare const ACTION_SMART_SELECT_EXPAND = "editor.action.smartSelect.expand";
/** Shrink Selection */
export declare const ACTION_SMART_SELECT_SHRINK = "editor.action.smartSelect.shrink";
/** Developer: Force Retokenize */
export declare const ACTION_FORCE_RETOKENIZE = "editor.action.forceRetokenize";
/** Toggle Tab Key Moves Focus */
export declare const ACTION_TOGGLE_TAB_FOCUS_MODE = "editor.action.toggleTabFocusMode";
/** Command Palette */
export declare const ACTION_QUICK_COMMAND = "editor.action.quickCommand";
/** Replace with Previous Value */
export declare const ACTION_IN_PLACE_REPLACE_UP = "editor.action.inPlaceReplace.up";
/** Replace with Next Value */
export declare const ACTION_IN_PLACE_REPLACE_DOWN = "editor.action.inPlaceReplace.down";
/** Go to Line/Column... */
export declare const ACTION_GOTO_LINE = "editor.action.gotoLine";
/** Select to Bracket */
export declare const ACTION_SELECT_TO_BRACKET = "editor.action.selectToBracket";
/** Go to Bracket */
export declare const ACTION_JUMP_TO_BRACKET = "editor.action.jumpToBracket";
/** Find */
export declare const ACTION_FIND = "actions.find";
/** Find With Selection */
export declare const ACTION_FIND_WITH_SELECTION = "actions.findWithSelection";
/** Find Next */
export declare const ACTION_NEXT_MATCH_FIND = "editor.action.nextMatchFindAction";
/** Find Previous */
export declare const ACTION_PREVIOUS_MATCH_FIND = "editor.action.previousMatchFindAction";
/** Find Next Selection */
export declare const ACTION_NEXT_SELECTION_MATCH_FIND = "editor.action.nextSelectionMatchFindAction";
/** Find Previous Selection */
export declare const ACTION_PREVIOUS_SELECTION_MATCH_FIND = "editor.action.previousSelectionMatchFindAction";
/** Replace */
export declare const ACTION_START_FIND_REPLACE = "editor.action.startFindReplaceAction";
/** Unfold */
export declare const ACTION_EDITOR_UNFOLD = "editor.unfold";
/** Unfold Recursively */
export declare const ACTION_EDITOR_UNFOLD_RECURSIVELY = "editor.unfoldRecursively";
/** Fold */
export declare const ACTION_EDITOR_FOLD = "editor.fold";
/** Fold Recursively */
export declare const ACTION_EDITOR_FOLD_RECURSIVELY = "editor.foldRecursively";
/** Fold All */
export declare const ACTION_EDITOR_FOLD_ALL = "editor.foldAll";
/** Unfold All */
export declare const ACTION_EDITOR_UNFOLD_ALL = "editor.unfoldAll";
/** Fold All Block Comments */
export declare const ACTION_EDITOR_FOLD_ALL_BLOCK_COMMENTS = "editor.foldAllBlockComments";
/** Fold All Regions */
export declare const ACTION_EDITOR_FOLD_ALL_MARKER_REGIONS = "editor.foldAllMarkerRegions";
/** Unfold All Regions */
export declare const ACTION_EDITOR_UNFOLD_ALL_MARKER_REGIONS = "editor.unfoldAllMarkerRegions";
/** Toggle Fold */
export declare const ACTION_EDITOR_TOGGLE_FOLD = "editor.toggleFold";
/** Fold Level 1 */
export declare const ACTION_EDITOR_FOLD_LEVEL1 = "editor.foldLevel1";
/** Fold Level 2 */
export declare const ACTION_EDITOR_FOLD_LEVEL2 = "editor.foldLevel2";
/** Fold Level 3 */
export declare const ACTION_EDITOR_FOLD_LEVEL3 = "editor.foldLevel3";
/** Fold Level 4 */
export declare const ACTION_EDITOR_FOLD_LEVEL4 = "editor.foldLevel4";
/** Fold Level 5 */
export declare const ACTION_EDITOR_FOLD_LEVEL5 = "editor.foldLevel5";
/** Fold Level 6 */
export declare const ACTION_EDITOR_FOLD_LEVEL6 = "editor.foldLevel6";
/** Fold Level 7 */
export declare const ACTION_EDITOR_FOLD_LEVEL7 = "editor.foldLevel7";
/** Open Link */
export declare const ACTION_OPEN_LINK = "editor.action.openLink";
/** Trigger Symbol Highlight */
export declare const ACTION_WORD_HIGHLIGHT_TRIGGER = "editor.action.wordHighlight.trigger";
/** Show Accessibility Help */
export declare const ACTION_SHOW_ACCESSIBILITY_HELP = "editor.action.showAccessibilityHelp";
/** Developer: Inspect Tokens */
export declare const ACTION_INSPECT_TOKENS = "editor.action.inspectTokens";
/** Go to Next Problem (Error, Warning, Info) */
export declare const ACTION_MARKER_NEXT = "editor.action.marker.next";
/** Go to Previous Problem (Error, Warning, Info) */
export declare const ACTION_MARKER_PREV = "editor.action.marker.prev";
/** Go to Next Problem in Files (Error, Warning, Info) */
export declare const ACTION_MARKER_NEXT_IN_FILES = "editor.action.marker.nextInFiles";
/** Go to Previous Problem in Files (Error, Warning, Info) */
export declare const ACTION_MARKER_PREV_IN_FILES = "editor.action.marker.prevInFiles";
/** Show Hover */
export declare const ACTION_SHOW_HOVER = "editor.action.showHover";
/** Show Definition Preview Hover */
export declare const ACTION_SHOW_DEFINITION_PREVIEW_HOVER = "editor.action.showDefinitionPreviewHover";
/** Add Cursor Above */
export declare const ACTION_INSERT_CURSOR_ABOVE = "editor.action.insertCursorAbove";
/** Add Cursor Below */
export declare const ACTION_INSERT_CURSOR_BELOW = "editor.action.insertCursorBelow";
/** Add Cursors to Line Ends */
export declare const ACTION_INSERT_CURSOR_AT_END_OF_EACH_LINE_SELECTED = "editor.action.insertCursorAtEndOfEachLineSelected";
/** Add Selection To Next Find Match */
export declare const ACTION_ADD_SELECTION_TO_NEXT_FIND_MATCH = "editor.action.addSelectionToNextFindMatch";
/** Add Selection To Previous Find Match */
export declare const ACTION_ADD_SELECTION_TO_PREVIOUS_FIND_MATCH = "editor.action.addSelectionToPreviousFindMatch";
/** Move Last Selection To Next Find Match */
export declare const ACTION_MOVE_SELECTION_TO_NEXT_FIND_MATCH = "editor.action.moveSelectionToNextFindMatch";
/** Move Last Selection To Previous Find Match */
export declare const ACTION_MOVE_SELECTION_TO_PREVIOUS_FIND_MATCH = "editor.action.moveSelectionToPreviousFindMatch";
/** Select All Occurrences of Find Match */
export declare const ACTION_SELECT_HIGHLIGHTS = "editor.action.selectHighlights";
/** Add Cursors To Bottom */
export declare const ACTION_ADD_CURSORS_TO_BOTTOM = "editor.action.addCursorsToBottom";
/** Add Cursors To Top */
export declare const ACTION_ADD_CURSORS_TO_TOP = "editor.action.addCursorsToTop";
/** Trigger Suggest */
export declare const ACTION_TRIGGER_SUGGEST = "editor.action.triggerSuggest";
export declare const COLOR_DETECTOR_CONTRIB = "editor.contrib.colorDetector";
export declare const CONTEXT_MENU_CONTRIB = "editor.contrib.contextmenu";
export declare const CURSOR_UNDO_REDO_CONTROLLER_CONTRIB = "editor.contrib.cursorUndoRedoController";
export declare const DRAG_AND_DROP_CONTRIB = "editor.contrib.dragAndDrop";
export declare const AUTO_FORMAT_CONTRIB = "editor.contrib.autoFormat";
export declare const FORMAT_ON_PAST_CONTRIB = "editor.contrib.formatOnPaste";
export declare const SMART_SELECT_CONTRIB = "editor.contrib.smartSelectController";
export declare const IPAD_SHOW_KEYBOARD_CONTRIB = "editor.contrib.iPadShowKeyboard";
export declare const BRACKET_MATCHING_CONTROLLER_CONTRIB = "editor.contrib.bracketMatchingController";
export declare const CODE_LENS_CONTRIB = "css.editor.codeLens";
export declare const FIND_CONTROLLE_CONTRIB = "editor.contrib.findController";
export declare const FOLDING_CONTRIB = "editor.contrib.folding";
export declare const IN_PLACE_REPLACE_CONTROLLER_CONTRIB = "editor.contrib.inPlaceReplaceController";
export declare const LINK_DETECTOR_CONTRIB = "editor.linkDetector";
export declare const MESSAGE_CONTROLLER_CONTRIB = "editor.contrib.messageController";
export declare const QUICK_FIX_CONTROLLER_CONTRIB = "editor.contrib.quickFixController";
export declare const MULTI_CURSOR_CONTROLLER_CONTRIB = "editor.contrib.multiCursorController";
export declare const SELECTION_HIGHLIGHTER_CONTRIB = "editor.contrib.selectionHighlighter";
export declare const PARAMETER_HINTS_CONTRIB = "editor.controller.parameterHints";
export declare const REFERENCE_CONTROLLER_CONTRIB = "editor.contrib.referenceController";
export declare const RENAME_CONTROLLER_CONTRIB = "editor.contrib.renameController";
export declare const WORD_HIGHLIGHTER_CONTRIB = "editor.contrib.wordHighlighter";
export declare const ACCESSIBILIY_HELP_CONTROLLER_CONTRIB = "editor.contrib.accessibilityHelpController";
export declare const INSPECT_TOKENS_CONTRIB = "editor.contrib.inspectTokens";
export declare const QUICK_OPEN_CONTROLLER_CONTRIB = "editor.controller.quickOpenController";
export declare const GOTO_DEFINITION_CONTRIB = "editor.contrib.gotodefinitionatposition";
export declare const REFERENCES_CONTROLLER_CONTRIB = "editor.contrib.referencesController";
export declare const MARKER_CONTROLLER_CONTRIB = "editor.contrib.markerController";
export declare const HOVER_CONTRIB = "editor.contrib.hover";
export declare const SNIPPET_CONTROLLER_CONTRIB = "snippetController2";
export declare const SUGGEST_CONTROLLER_CONTRIB = "editor.contrib.suggestController";