Colderleo's blog Colderleo's blog
首页
Linux
C++
Python
前端
工具软件
mysql
索引
关于
GitHub (opens new window)

Colder Leo

热爱代码的打工人
首页
Linux
C++
Python
前端
工具软件
mysql
索引
关于
GitHub (opens new window)
  • vscode插件、主题、快捷键、调试、魔改便携模式
  • 好用软件集锦
  • 网站收藏、ref-tools、好用的网站
  • Visual Studio插件和设置-注意不是vscode
  • Tablacus Explorer
  • ezpdf-手机pdf横屏阅读神器
  • 免费SSH工具
  • 用markdown搭建个人博客
  • git、GitHub用法
  • idea自动上传-winscp实时文件夹同步
  • windows卸载程序的注册表项
  • 1-windows装系统-设置-登录信息
  • word模板设置题目和答案-答案可隐藏
  • 正则表达式
  • MediaCoder 视频压缩参数
  • MinGW
  • 免费专利检索网站
  • 工具软件
gaoliu
2021-10-06

Visual Studio插件和设置-注意不是vscode

# 插件

  • Highlight all occurrences of selected word,选中高亮,这个2010-2017都要装
  • Highlighterr for Visual C++ 2010,语法高亮,只有vs2010需要
  • Ctrl+Click Go To Definition,这个2015版之后就自带了,不需要了。
  • VSWindowTitleChanger, 将标题改变成原来的标题+文件路径.。orig_title + " " + doc_dir
  • ForceUTF8 使所有文件保存的时候自动保存为utf8格式,不带bom。还有另一个插件是with BOM,最好不要带BOM。

# 快捷键

https://www.zhihu.com/question/381463549

将vs快捷键设置为何vscdoe一样:

1、打开vs编辑器 2、找到工具-->选项 3、在左边搜索键盘,或者直接 找 环境 -->键盘 4、点击键盘,在左边出现映射方案,目前是默认值。点击修改 5、选项中,一直往下,会有vscode选项,点击选中就可以啦,

# settings.json配置

{
    "window.zoomLevel": 1,
    "sync.gist": "bb59680002b7aeb68c71818db6e7a1cc",
    "python.linting.pylintArgs": [
        "--extension-pkg-whitelist=PyQt5, pymysql",
        "--disable=C0326",
        "--disable=multiple-imports",
        "--disable=superfluous-parens",
        "--disable=missing-function-docstring",
        "--disable=wrong-import-order",
        "--disable=missing-module-docstring",
        "--disable=trailing-whitespace",
        "--disable=line-too-long",
        "--disable=logging-not-lazy",
        "--disable=bare-except",
        "--disable=broad-except",
        "--disable=logging-format-interpolation",
        "--disable=generated-members",
        "--disable=missing-class-docstring",
        "--disable=too-many-instance-attributes",
        "--disable=too-few-public-methods,trailing-newlines",
        "--good-names=i,j,wi,GlobalData,e,ex,tw,MainWindow,mysql_host,mysql_user,mysql_passwd"
    ],
    "workbench.colorTheme": "Solarized Dark",
    "outline.showModules": false,
    "files.autoGuessEncoding": true
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
编辑 (opens new window)
上次更新: 2021/11/28, 23:21:05
网站收藏、ref-tools、好用的网站
Tablacus Explorer

← 网站收藏、ref-tools、好用的网站 Tablacus Explorer→

最近更新
01
通过模板实现结构体成员拷贝-按成员名匹配
05-07
02
c++17通过模板获取类成员的个数
05-01
03
avx-sse切换惩罚
04-30
更多文章>
Theme by Vdoing | Copyright © 2019-2023 Colder Leo | MIT License
  • 跟随系统
  • 浅色模式
  • 深色模式
  • 阅读模式
×