问题记录 | VScode中使用IntelliJ的快捷键 主要想用ctrl+alt+l格式化Python代码 安装VScode的插件:IntelliJ IDEA Keybindings 安装方法: Installation Install Visual Studio Code 1.30.2 or higher Launch Code From the extension view Ctrl-Shift-X (Windows, Linux) or Cmd-Shift-X (macOS) Searc…
因为前段时间看了瞬息之间的一篇文章编辑器背后的程序观, 里面只提到了Visual studio. 我想想可能是因为非.Net开发者,所以不知道Visual sutdio code这个工具.来看看Vs code的定义吧: Microsoft Launches Visual Studio Code, A Free Cross-Platform Code Editor For OS X, Linux And Windows. 一个跨平台的免费编辑器. 之前在某蛋公司工作的时候做Angular开发的…
修改注册表,添加鼠标右键 选择文件 Windows Registry Editor Version 5.00 [HKEY_CLASSES_ROOT\*\shell\VSCode]@="Open with Code""Icon"="D:\\VSCode\\Code.exe" [HKEY_CLASSES_ROOT\*\shell\VSCode\command]@="\"D:\\VSCode\\Code.exe\" \&q…
使用vscode编写python还是挺舒服的,但是如果给vscode安装了语法校验插件,例如flake8,会常常提示一些非常苛刻的语法问题,其中最让人不能忍受的就是line to long. 一行仅能容纳79个字符?显然不够用!强迫症患者对于代码中的语法错误提示是无法容忍的,所以必须要消灭它. 在命令行中输入:flake8 --help,会显示一下帮助选项,其中一条是: --max-line-length=n Maximum allowed line length for the entiret…