当前位置:网站首页>sublime 背景透明度以及列编辑
sublime 背景透明度以及列编辑
2022-07-30 01:26:00 【chen2ha】
背景透明
打开 sublime
ctrl + shift + p
Install Package
Transparency
调整不透明度
数字越大,越透明
ctrl + shift + [1~6]
列编辑配置
Data\Packages\Default\Default (Windows).sublime-mousemap- 在配置文件中
//表示注释,建议把修改的一段内容多复制一段,然后注释掉再修改,如果效果不好或者改错了,还能还原会去
- 在配置文件中
ctrl 加 滚轮 缩放字体大小,下面的是默认配置,如果需要关闭这个功能,将
decrease_font_size和increase_font_size改为 null 后保存
// Change font size with ctrl+scroll wheel
{
"button": "scroll_down", "modifiers": ["ctrl"], "command": "decrease_font_size" },
{
"button": "scroll_up", "modifiers": ["ctrl"], "command": "increase_font_size" },
{
"button": "button2", "modifiers": [], "command": "context_menu" }
alt 加 鼠标左键 实现列编辑,找到
Mouse 3 column select字段
button1-鼠标左键button2-鼠标右键button3-鼠标中键
{
"button": "button1", "modifiers": ["alt"],
"press_command": "drag_select",
"press_args": {
"by": "columns", "additive": true}
},
边栏推荐
- LeetCode 2352. 相等行列对
- 【微服务~Nacos】Nacos之配置中心
- 帽式滑环的工作原理
- 气路旋转连接器怎么用
- What majors become more popular the older they get?
- 【VMWARE--共享文件】
- 【Flutter】Flutter inspector 工具使用详解,查看Flutter布局,widget树,调试界面等
- 2022-07-29:一共有n个人,从左到右排列,依次编号0~n-1, h[i]是第i个人的身高, v[i]是第i个人的分数, 要求从左到右选出一个子序列,在这个子序列中的人,从左到右身高是不下降的。
- CAPL中的键值对(hash)数据类型
- Validation Framework-01
猜你喜欢
随机推荐
面试题:手写Promise
微信小程序开发之图片压缩方案
裁员趋势下的大厂面试:“字节跳动”
JS开发3D建模软件
Validation Framework-01
Reconstruction of binary tree
什么专业越老越吃香?
Performance Testing Theory 1 | Sorting out difficult problems in performance testing
自学HarmonyOS应用开发(49)- 引入地图功能
Linux - install MySQL (detailed tutorial)
重新定义分析 - EventBridge 实时事件分析平台发布
小白必看|不用编程的labview,ATECLOUD完全满足你的需求
泰克Tektronix示波器软件TDS420|TDS430|TDS460上位机软件NS-Scope
Graphical LeetCode - 593. Valid Squares (Difficulty: Moderate)
[Training DAY16] ALFA [convex hull] [computational geometry]
在服务器上运行node流程
Detailed introduction to the usage of Nacos configuration center
图解LeetCode——593. 有效的正方形(难度:中等)
Recurrent Neural Network (RNN)
更换可执行文件glibc版本的某一次挣扎



![[VMWARE--Shared files]](/img/34/1f1609edc82c0a134886f9bf936f7f.png)





