vscode设置终端主题,设置终端选中颜色
vscode定义主题色官网:
https://code.visualstudio.com/api/references/theme-color#integrated-terminal-colors
问题:
终端选中颜色和终端背景颜色一致时,不能显示出光标选中的内容,并且网上搜索了各种主题设置,没有提到终端选中属性的颜色
解决:
通过查找vscode官方资料,找到terminal.selectionBackground属性,可以通过调整terminal.selectionBackground属性,设置终端选中内容的颜色
完整终端属性:
terminal.background: The background of the Integrated Terminal's viewport.
terminal.border: The color of the border that separates split panes within the terminal. This defaults to panel.border.
terminal.foreground: The default foreground color of the Integrated Terminal.
terminal.ansiBlack: 'Black' ANSI color in the terminal.
terminal.ansiBlue: 'Blue' ANSI color in the terminal.
terminal.ansiBrightBlack: 'BrightBlack' ANSI color in the terminal.
terminal.ansiBrightBlue: 'BrightBlue' ANSI color in the terminal.
terminal.ansiBrightCyan: 'BrightCyan' ANSI color in the terminal.
terminal.ansiBrightGreen: 'BrightGreen' ANSI color in the terminal.
terminal.ansiBrightMagenta: 'BrightMagenta' ANSI color in the terminal.
terminal.ansiBrightRed: 'BrightRed' ANSI color in the terminal.
terminal.ansiBrightWhite: 'BrightWhite' ANSI color in the terminal.
terminal.ansiBrightYellow: 'BrightYellow' ANSI color in the terminal.
terminal.ansiCyan: 'Cyan' ANSI color in the terminal.
terminal.ansiGreen: 'Green' ANSI color in the terminal.
terminal.ansiMagenta: 'Magenta' ANSI color in the terminal.
terminal.ansiRed: 'Red' ANSI color in the terminal.
terminal.ansiWhite: 'White' ANSI color in the terminal.
terminal.ansiYellow: 'Yellow' ANSI color in the terminal.
terminal.selectionBackground: The selection background color of the terminal.
vscode设置终端主题,设置终端选中颜色的更多相关文章
- mac 终端 使用 solarized 主题设置语法高亮
mac 终端 使用 solarized 主题设置语法高亮 先来看看 solarized 在 mac 终端上的效果图片 一:先下载 solarized 官网下载:https://github.com/a ...
- 如何设置linux bash终端的字符显示内容和颜色?
通常linux有1-6个字符终端 tty, 有1个图形终端. 通常用 ctrl+alt+f1 到f6是字符终端, ctrl+alt+f7为图形终端, 但是, 也有不一样的, 如: fedora的4.0 ...
- linux系统终端命令提示符设置(PS1)记录
PS(Prompt Sign)指的是命令提示符,在日常运维工作中为了方面操作管理,有时会设定PS1环境变量.废话不多说,下面开始记录下Linux中PS1设置 在/etc/.bashrc中,找到PS1变 ...
- emacs24 颜色主题设置
Emacs24 颜色主题设置 在Linux上写程序,永远绕不过的2个东西就是vi和emacs.emacs是早晚要接触的东西.本文就从配置颜色主题(color-theme)开始.用命令:$ sudo a ...
- Linux 的终端及设置
Linux 的终端及设置 终端是一种字符型设备,有多种类型,通常使用tty 来简称各种类型的终端设备.终端特殊设备文件一般有以下几种: /dev/ttySn 串行端口终端 (Serial Port T ...
- stty - 改变并打印终端行设置
总览 stty [-F device] [--file=device] [SETTING]... stty [-F device] [--file=device] [-a|--all] stty [- ...
- kali linux终端快捷键设置
kali里面是没有终端快捷键的,需要自己设置. 打开设置->设备->keyboard,拉到最下面点击加号来新建一个快捷键. 名称:打开终端 命令:gnome-terminal 快捷键:Ct ...
- phpstorm9整合本地apache和豆沙绿主题设置(附资源)
♣phpstorm9下载(安装包和注册码) ♣phpstorm9自带apache和自定义apache服务器 ♣phpstorm9豆沙绿主题设置(附我的主题包) 说明:如果还未安装apache和php7 ...
- Eclipse详细设置护眼背景色和字体颜色并导出
Eclipse详细设置护眼背景色和字体颜色并导出 Eclipse是一款码农们喜闻乐见的集成开发平台,但是其默认的主题和惨白的背景色实在是太刺激眼球了.下面,将给大家详细介绍如何设置成护眼主题的方法,也 ...
- VS2010主题设置及插件推荐
本文主要写了个人使用 VS2010 的一些配置及实用插件,从而打造一个符合个人风格的开发环境. 基础设置 安装 Visual Assist X 在 VS2010 中若不安装 Visual Assist ...
随机推荐
- saml login的流程
用户会访问首页/, 然后进入到指定的一个URL, 就是admin在site-settings里面的设置的那个地址, 发现权限不够,进入到403accesslogin, 然后调用user4032logi ...
- [JavaScript]关于prototype继承
When it comes to inheritance, JavaScript only has one construct: objects. Each object has a private ...
- hover状态下改变图片颜色的方式 悬停图片切换;css变量;悬停svg图片改变颜色;VUE
由外部json文件,按照配置方式引入图片路径时,需要一些值得注意的语法来动态引入和改变图片 1.图片路径设置 ,按照img标签动态引入图片 <img src=''/> 路径不引入变量,此时 ...
- 如何基于ZK实现高可用架构
zookeeper设计步骤 设计path 节点的路径 选择znode类型 普通节点.临时节点等 设计znode数据 节点中的数据 设计watch 节点的监听事件以及对应的处理 ZK实现主备切换架构 ...
- P7074 [CSP-J2020] 方格取数
目录 题目 思路 code 题目 题目链接https://www.luogu.com.cn/problem/P7074 思路 用dp[i][j][0]表示在(i,j)从左边来的最大值 用dp[i][j ...
- UntrimmedNets for weakly supervised action recognition and detection概述
0.前言 相关资料: 论文 github 论文解读(CSDN) 论文基本信息: 领域:动作识别与检测 发表时间:CVPR2017(2017.5.22) 1.针对的问题 这篇论文之前的行为识别方法严重依 ...
- go读取excel的内容
import "github.com/360EntSecGroup-Skylar/excelize" func SimulationDataHandler(){ f, err := ...
- golang基本数据类型
1.整形 默认整数类型为int 变量在选择时应遵循最小化原则 1.1 有符号(int) 类型 取值范围 占用空间(字节) int8 -2^7到 2^7-1 (-128到127) 1 int16 -2^ ...
- XML报文解析
/** * XML报文解析 * @param docStr */ private Map<String, Object> analysisXmlStr(String xmlStr) { t ...
- oracle 函数instr