VSCode - 插件: 高亮显示选中的目标

找到两个,第一个是:highlight-words,by Richard Bondi。

This extension is adapted from the sample VS code extension decorator-sample, inspired by atom-quick-highlight.

It creates a decoration for each selected word that appears in all editors.

Usage

* You can add words by chosing Highlight Toggle Current from the command pallet, this will highlight the word at the cursor or the selection.

* To stop highlighting, choose Highlight Remove, then the desired word or expression, or all

* You may also remove all from the command Highlight Remove All without the prompt for selection

* To highlight using regular expression choose Highlight Expression and enter expression(slashes optional, can ignore case with /expression/i(g flag is automatic, i flag accepted, all others ignored).

* To highlight with options choose Highlight Selection with Options and choose whole word, ignore case or both when presented

* You can set the mode for "Highlight Toggle Current" from the Set Highlight Mode command. The default can be set in the configuration.

* Sidebar can show in explorer view and can be toggled on and off with Highlight Toggle Sidebar command. This provides features such as navigating highlighted items, context menu for changing options and removing.

Configuration

The following options can be configured

highlightwords.colors: this is an array of light/dark pairs for respective theme types, you can have as few or as many as you like

highlightwords.box: show highlights as a box around the selections if true, set highlight as background color if false

highlightwords.defaultMode: the initial mode when initialized. 0=default, 1=whole word, 2=ignore case, 3=whole word and ignore case

highlightwords.showSidebar provides a view in the explorer window for searching, changing options and removing highlights

defaults shown below

"highlightwords.colors": [

{ "light": "#b3d9ff", "dark": "cyan" },

{ "light": "#e6ffb3", "dark": "pink" },

{ "light": "#b3b3ff", "dark": "lightgreen" },

{ "light": "#ffd9b3", "dark": "magenta" },

{ "light": "#ffb3ff", "dark": "cornflowerblue" },

{ "light": "#b3ffb3", "dark": "orange" },

{ "light": "#ffff80", "dark": "green" },

{ "light": "#d1e0e0", "dark": "red" }

...

],

"highlightwords.box": {

"light": false,

"dark": true

},

"highlightwords.defaultMode": {

"default": 0

}

"highlightwords.showSidebar": {

"default": true

}

==============================================

还有第二个插件,highlight,by debugpig。

这个用起来也挺方便的,快捷键设置和SourceInsight一样哦。

该插件可将选中的单词进行高亮。

Features

* 支持选中/取消单词高亮(shift+F8)

* 支持全量取消单词高亮(ctrl+shift+F8)

Extension Settings

* highlight.configuration.wholeWord: 是否完整单词匹配(boolean)

* highlight.configuration.ignoreCase: 是否完整忽略大小写匹配(boolean)

* highlight.configuration.colors: 高亮的颜色配置(array)

相关推荐
hez201018 小时前
在 .NET 上构建超大托管数组
c#·.net·.net core·gc·clr
雨落倾城夏未凉6 天前
第四章c#方法-参数数组和可选参数(16)
后端·c#
唐青枫7 天前
线程不是越多越快:C#.NET Thread 生命周期、同步与后台工作线程实战
c#·.net
唐青枫8 天前
别只会反射:C#.NET Emit 动态生成代码实战详解
c#·.net
咕白m6258 天前
.NET 环境下 Word 超链接批量提取方案
c#·.net
用户91721561902118 天前
C# 通信协议增量解析:用状态机处理半包和粘包
c#
小码编匠9 天前
C# 工控上位机必备:数据转换工具类与十个核心模块
后端·c#·.net
唐青枫11 天前
别再乱用 StartNew:C#.NET TaskFactory 任务调度实战详解
c#·.net
Artech11 天前
[MAF预定义的AIContextProvider-03]ChatHistoryMemoryProvider——赋予Agent从经验中学习的能力
ai·c#·agent·memory·maf
Scout-leaf13 天前
C#摸鱼实录——IoC与DI案例详解
c#