vscode APIs
- workspace
- window
- ExtensionContext
- Uri
- commands
- Range
- Position
- TextDocument
- Disposable
- CancellationToken
- languages
- TextEditor
- EventEmitter
- ViewColumn
- QuickPickItem
- Event
- OutputChannel
- MarkdownString
- extensions
- ProviderResult
- env
- StatusBarItem
- StatusBarAlignment
- WorkspaceConfiguration
- Location
- TreeItemCollapsibleState
- TreeItem
- Selection
- CompletionItem
- WorkspaceFolder
- TreeDataProvider
- TextEdit
- CompletionItemKind
- Command
- Hover
- WorkspaceEdit
- WebviewPanel
- Diagnostic
- DiagnosticSeverity
- ConfigurationTarget
- ProgressLocation
- ThemeColor
- TextEditorDecorationType
- TextDocumentChangeEvent
- CodeActionProvider
- HoverProvider
- ThemeIcon
- SnippetString
- CompletionList
- DecorationOptions
- RelativePattern
- DiagnosticCollection
- CompletionContext
- CompletionItemProvider
- CodeAction
- CodeActionKind
- InputBoxOptions
- ColorThemeKind
- ConfigurationChangeEvent
- FileSystemWatcher
- TextEditorEdit
- TextDocumentContentChangeEvent
- Extension
- CodeActionContext
- FileStat
- QuickPickOptions
- DocumentSymbol
- SymbolKind
- QuickInputButton
- Webview
- IndentAction
- debug
- FileSystemError
- TreeView
- TextEditorRevealType
- FileSystemProvider
- FileChangeEvent
- Memento
- Definition
- FormattingOptions
- DocumentFilter
- DecorationRenderOptions
- QuickPick
- WebviewView
- WebviewViewProvider
- DocumentHighlight
- DebugConfiguration
- Terminal
- FileType
- TextDocumentWillSaveEvent
- FileChangeType
- OpenDialogOptions
- DocumentSelector
- DefinitionProvider
- LocationLink
- TextDocumentShowOptions
- DecorationRangeBehavior
- OverviewRulerLane
- SignatureHelp
- SemanticTokens
- Progress
- DocumentFormattingEditProvider
- SemanticTokensBuilder
- WebviewViewResolveContext
- CustomDocument
- DebugSession
- CodeLens
- CodeLensProvider
- WebviewOptions
- WebviewPanelOptions
- FileRenameEvent
- TextDocumentSaveReason
- CancellationTokenSource
- CustomTextEditorProvider
- QuickPickItemKind
- DocumentLink
- DocumentHighlightKind
- FileDecoration
- FileDecorationProvider
- TextDocumentContentProvider
- GlobPattern
- FileDeleteEvent
- SaveDialogOptions
- SignatureInformation
- CompletionItemTag
- FileCreateEvent
- ReferenceContext
- SemanticTokensLegend
- TreeViewVisibilityChangeEvent
- QuickInput
- QuickInputButtons
- CustomReadonlyEditorProvider
- DiagnosticRelatedInformation
- DebugConfigurationProvider
- DebugAdapterExecutable
- DebugAdapterDescriptor
- DebugAdapterDescriptorFactory
- DebugAdapterServer
- FileSearchOptions
- FileSearchProvider
- FileSearchQuery
- TextSearchComplete
- TextSearchOptions
- TextSearchProvider
- TextSearchQuery
- TextSearchResult
- EndOfLine
- FileWillRenameEvent
- FoldingRangeKind
- MessageItem
- TextEditorVisibleRangesChangeEvent
- ColorTheme
- CustomEditorProvider
- CustomDocumentBackupContext
- CustomDocumentBackup
- CustomDocumentOpenContext
- CustomDocumentContentChangeEvent
- SymbolInformation
- DecorationInstanceRenderOptions
- DefinitionLink
- DocumentLinkProvider
- TerminalOptions
- CodeActionProviderMetadata
- MarkedString
- tasks
- Task
- TaskDefinition
- ShellExecution
- TaskGroup
- DocumentRangeFormattingEditProvider
- TaskScope
- TextEditorSelectionChangeKind
- RenameProvider
- TextLine
- WorkspaceFoldersChangeEvent
- TreeItemLabel
Other Related APIs
vscode#DecorationRangeBehavior TypeScript Examples
The following examples show how to use
vscode#DecorationRangeBehavior.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: windowDecorations.ts From dendron with GNU Affero General Public License v3.0 | 6 votes |
EDITOR_DECORATION_TYPES: {
[key in keyof typeof DECORATION_TYPES]: TextEditorDecorationType;
} = {
timestamp: window.createTextEditorDecorationType({}),
blockAnchor: window.createTextEditorDecorationType({
opacity: "40%",
rangeBehavior: DecorationRangeBehavior.ClosedOpen,
}),
/** Decoration for wikilinks that point to valid notes. */
wikiLink: window.createTextEditorDecorationType({
color: new ThemeColor("editorLink.activeForeground"),
rangeBehavior: DecorationRangeBehavior.ClosedClosed,
}),
/** Decoration for wikilinks that do *not* point to valid notes (e.g. broken). */
brokenWikilink: window.createTextEditorDecorationType({
color: new ThemeColor("editorWarning.foreground"),
backgroundColor: new ThemeColor("editorWarning.background"),
rangeBehavior: DecorationRangeBehavior.ClosedClosed,
}),
/** Decoration for the alias part of wikilinks. */
alias: window.createTextEditorDecorationType({
fontStyle: "italic",
}),
taskNote: window.createTextEditorDecorationType({
rangeBehavior: DecorationRangeBehavior.ClosedClosed,
}),
}
Example #2
Source File: coverage.ts From gnucobol-debug with GNU General Public License v3.0 | 5 votes |
readonly RED: TextEditorDecorationType = window.createTextEditorDecorationType({
isWholeLine: true,
rangeBehavior: DecorationRangeBehavior.ClosedClosed,
outline: 'none',
backgroundColor: 'rgba(255, 20, 20, 0.2)',
overviewRulerColor: new ThemeColor('editorOverviewRuler.errorForeground'),
overviewRulerLane: OverviewRulerLane.Center
});
Example #3
Source File: coverage.ts From gnucobol-debug with GNU General Public License v3.0 | 5 votes |
readonly GREEN: TextEditorDecorationType = window.createTextEditorDecorationType({
isWholeLine: true,
rangeBehavior: DecorationRangeBehavior.ClosedClosed,
outline: 'none',
backgroundColor: 'rgba(20, 250, 20, 0.2)'
});