VS Code 使用

简介: 作为一款开箱即用的产物,尽量不做过多额外配置。

作为一款开箱即用的产物,尽量不做过多额外配置。


设置 vscode 换行符 (\n)



直接搜索files:eol进行设置。


我的必装插件


IntelliJ IDEA 键盘映射


https://marketplace.visualstudio.com/items?itemName=k--kato.intellij-idea-keybindings


markdownlint


https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint


VS code 更改字体


两种字体的介绍:


等宽字体(英语:Monospaced Font)是指字符宽度相同的电脑字体。与此相对,字符宽度不尽相同的电脑字体称为比例字体(Proportional Font)。


在传统西文印刷中,比例字体可以提高单词的可读性。但因打字机及早期的电脑画面显示等由于技术的局限,无法进行字母宽度的比例调整,因此将每个字符都制作成一样的宽度,从而形成了等宽字体。在等宽字体中,字母 i , j 显得两侧余白较多,而字母 w , m 等的笔画显得相当拥挤。


但是随着图形用户界面主流的更新和电脑技术的提高,处理比例字体的局限性得到了突破,因此现在排版上显得比较自然的比例字体的使用已经相当普及。


由于等宽字体的特点,当今的平面设计上也有特意使用等宽字体所具有的文化特征进行创作的风格,其中最具有代表性的就是 ASCII 艺术。ASCII 艺术所使用的字符都是等宽字体,如果改用比例字体,图片往往变形而无法表达创作者本意。在网页设计中, <tt></tt>或<pre></pre> HTML 标记通常都是使用等宽字体。另外,代码以及文字接口的程序,如虚拟终端等也经常使用等宽字体。


另外,代码以及文字接口的程序,如虚拟终端等也经常使用等宽字体


image.png

修改 vscode 终端字体


在 code-首选项-设置里面,输入fontsize, 点击功能-终端即可轻松找到。


VS Code 配置 Python


Prerequisites


To successfully complete this tutorial, you need to first setup your Python development environment. Specifically, this tutorial requires:


  • VS Code


  • VS Code Python extension


  • Python 3


验证安装


Linux/macOS: open a Terminal Window and type the following command:


python3 --version


Windows: open a command prompt and run the following command:


py -3 --version


Select a Python interpreter


Python is an interpreted language, and in order to run Python code and get Python IntelliSense, you must tell VS Code which interpreter to use.


From within VS Code, select a Python 3 interpreter by opening the Command Palette (Ctrl+Shift+P), start typing the Python: Select Interpreter command to search, then select the command. You can also use the Select Python Environment option on the Status Bar if available (it may already show a selected interpreter, too)


启用虚拟环境


Note: When you create a new virtual environment, you should be prompted by VS Code to set it as the default for your workspace folder. If selected, the environment will automatically be activated when you open a new terminal.

For Windows


py -3 -m venv .venv
.venv\scripts\activate


Once you are finished, type deactivate in the terminal window to deactivate the virtual environment.




目录
相关文章
|
存储 编解码 监控
G-Code 详解
玩过一段时间3D打印机的朋友,都会接触到G-code文件。所谓G-code文件, 指的是3D模型在进入3D打印机实际打印之前,必须要经过切片器处理而成的一种中间格式文件。
4820 0
|
3月前
|
自然语言处理 IDE JavaScript
Fitten Code
【8月更文挑战第30天】
171 4
|
6月前
|
监控
常用T-code使用总结
常用T-code使用总结
48 1
|
Ubuntu 安全 IDE
被VS Code牢牢圈粉了!
一款得心应手的IDE,能够让开发者效率和幸福感得到极大的提升。 而VS Code这两年迅速的发展,使它俘获一大批忠实的用户。 本文,将从扩展、主题、图标等全面的介绍如何配置一款让人爽到起飞的VS Code。
被VS Code牢牢圈粉了!
|
JSON Java 程序员
code S: code style & code standard
关于代码风格与代码规范的二三事
318 0
|
移动开发 前端开发 程序员
CODE大全
我本人自己是个程序猿,在这个互联网时代,我除了工作,业余时间都在自己的博客上编写文章,我以写博客文章赚点零花钱。这是一篇软文,主要用来推广一下我的第二个网站:CODE大全。说实话,我的文笔很水,从小写作文,到现在没有得过高分。也不知道从何处开始介绍 CODE大全 。CODE大全主要包含以下几个板块博客栏目:www.codedq.net其中博客栏目包括,首页,编程语言,WEB前端,数据库,架构设
1761 1
|
人工智能 开发工具 git
Code Craft
代码篇 如果要随机产生一个a到b(包括a和b)之间的整数,可以使用下面的公式: int num = (int)( Math.random() * ( b – a + 1 )) + a; // 随机产生一个a到b(包括a和b)之间的整...
1222 0
|
Web App开发 前端开发 开发工具
强大的 VS Code
在 Build 2015 大会上,微软除了发布了 Microsoft Edge 浏览器和新的 Windows 10 系统外,最大的惊喜莫过于宣布推出免费跨平台的 Visual Studio Code 编辑器了!
5506 0
openBMC source code
1、fand 1)main函数 read_sysfs_int("/sys/bus/i2c/drivers/cmmcpld/13-003e/slotid", &sysfs_value) write_fan_speed(fan + fan_offset, fan_speed) write_fan_le...
2629 0