-
vscode kite插件_Visual Studio Code(vscode)使用介绍
2020-11-25 06:27:23建议将下图红框中勾选,安装完成后可通过鼠标右键打开vscode。安装界面使用介绍插件安装 安装完成后,左侧栏可以看到不同模块,一开始包含资源管理,搜索栏,git,debug,插件模块。个别插件安装后会新增新模块,...[TOC]
vscode 安装
- 软件直接在vscode官网(https://code.visualstudio.com/)下载安装。
- 建议将下图红框中勾选,安装完成后可通过鼠标右键打开vscode。
安装界面
使用介绍
插件安装
- 安装完成后,左侧栏可以看到不同模块,一开始包含资源管理,搜索栏,git,debug,插件模块。个别插件安装后会新增新模块,例如Remote-SSH。
- 插件模块具有很多第三方开发的模块,极大方便vdcode的使用。
- 根据个人熟悉的编程语言,选择对应的插件。本人目前用到的插件主要有:
- Chinese (Simplified) Language Pack for Visual Studio Code:中文-软件语言包
- python,jupyter,kite:python相关的插件
- markdownlint,Markdown Preview Enhanced:markdown语法提示和预览,个人觉得比vscode自带的markdown好用
- Power Mode:炫酷编码特效
- Remote-SSH:远程登陆
- 插件安装完成后,查看插件介绍及使用说明,个别插件需要手动设置,例如Power Mode。需要修改设置json文件。使用快捷键Ctrl+Shift+P,进入命令模式,输入settings.json,选择Open Settings(JSON)。输入对应的键值对即可。Power Mode为例:
{ "powermode.enabled": true // 打开powermode "powermode.shakeIntensity": 0 // 关闭抖动效果 "powermode.presets":"fireworks" // 设置不同效果,不设定则默认 }
效果图(来自网络,侵删)
登录vscode
- vscode左下角有个登录选项,但这种登录不是直接注册登录,而是通过第三方账号登录,选择Turn on Settings Sync,命令框会提示登录并打开,点击后会让你选择GitHub账号或者Microsoft账号,选择先注册才能进行授权,本人使用的是GitHub,这里就用github来介绍。
登录界面
- Github授权。点击使用GitHub账号登录后,会跳转到GitHub授权界面,同意并登录GitHub。完成后会提醒成功授权,之后会自动跳转会vscode,自动设定,如果不成功,根据提醒按步骤执行。
Github授权vscode界面
Github跳转vscode提示授权修改
- 报错:登录失败。
- 解决:打开git,指定git存储库,启动存储库初始化。再重新授权登录即可。如果还未生效,可重启vscode。打开左下角,发现已经登录成功,git还可以将文件同步到GitHub。
登录失败报错及解决
修改终端
- windows的cmd和PowerShell,个人觉得都不是很好用,所以本人另外安装了git,通过git在windows上使用比较舒服。vscode终端默认是系统自带的(bash, powershell),但也可以修改为其他的,如果安装了git,可以修改为git。
- 直接选择Git Bash,会报错,无法自动写入设置,需要手动修改。跟之前一样,需要到settings.json文件中修改,添加
"terminal.integrated.shell.windows": "C:Program FilesGitbinbash.exe"
即可,路径修改为个人具体安装路径。
Shell选择
远程访问服务器
- 远程访问,需要先安装Remote-SSH插件。会自动安装另一个插件Remote - SSH: Editing Configuration Files。
- 访问步骤:
- 使用快捷键Ctrl+Shift+P,在命令框输入remote-ssh,选择connet to host。
- 输入user@host
- 选择服务器系统类型
- 输入服务器登录密码
- 完成登录。部分插件需要在服务器重新安装。
访问服务器步骤
- 报错1:ECDSA key fingerprint
ECDSA key fingerprint is SHA**********************************. Are you sure you want to continue connecting (yes/no)?
- 解决1:因为使用remote-ssh登录时无法进行交互确认,所以会报错。只需要在vscode终端使用ssh登录且确认后,再使用remote-ssh进行登录,报错就解决。
- 报错2:bad owner or permissions on .ssh/config
- 原因:因为Remote-SSH连接服务器需要用到Remote - SSH: Editing Configuration Files插件,而这个插件编辑~/.ssh/config之后,config文件权限发生了更改。这是不仅vscode连接不了,系统powershell也连接不了(但是git可以连接,当时以为修改默认shell就能解决,结果还是不行,remote还是用powershell打开)。但是删除了config文件后,powershell就能正常运行ssh。
- 解决2.1:重新修改权限
chmod 600 ~/.ssh/config chown $USER ~/.ssh/config
- 解决2.2: openssh辅助
- GitHub下载openssh-portable。
git clone https://github.com/PowerShell/openssh-portable.git
- 下载后,powershell或git进入
cd ./openssh-portable/contrib/win32/openssh
,执行./FixUserFilePermissions.ps1 -Confirm:$false
。 - 如果报错:无法加载文件 FixUserFil ePermissions.ps1,因为在此系统上禁止运行脚本。则执行
Set-ExecutionPolicy RemoteSigned
,输入Y
,重新执行步骤2,执行完成后,再次执行Set-ExecutionPolicy RemoteSigned
,输入N
。 - 完成后,按照访问步骤连接服务器。
参考资料
[1]. https://zixizixi.cn/windows_vscode_ssh_error_bad-owner-or-permissions
-
vscode kite插件_微软发布 VS Code Python 插件 7 月更新
2020-11-23 21:58:14微软发布了 7 月的 Visual Studio Code Python 扩展更新,此版本总共修复了 51 个问题,其中包括:支持新的语言服务器:PylanceGather 扩展将 Notebook 导出为 HTML 和 PDF调试器的反向连接支持新的语言服务器:...微软发布了 7 月的 Visual Studio Code Python 扩展更新,此版本总共修复了 51 个问题,其中包括:
- 支持新的语言服务器:Pylance
- Gather 扩展
- 将 Notebook 导出为 HTML 和 PDF
- 调试器的反向连接
支持新的语言服务器:Pylance
Pylance 是微软基于 Microsoft Pyright 静态类型检查工具的新语言服务器。它是一种快速的语言服务器,提供了许多功能来帮助用户编写代码,包括自动导入、无效代码检测、参数和返回类型信息等等。
Pylance 最近添加的一项功能是上下文高亮显示:
Gather 扩展
此版本增加了对新的实验性扩展 Gather 的支持。该工具用于分析并确定 Notebook 中必要的代码依存关系,并执行代码清除,自动执行此困难且耗时的任务。
用户无需手动删除未使用的导入内容或不相关的代码即可清理 Notebook。Gather 的最终文件格式可以使用 VS Code 设置 “Data Science: Gather To Script” 进行自定义。
将 Notebook 导出为 HTML 和 PDF
导出为 PDF 需要安装 TeX。
调试器的反向连接
现在可以使用反向连接更轻松地启动远程调试器会话。
将 ptvsd(VS Code 中的 Python 调试器)附加到 Python 进程或远程计算机时,需要设置远程 Python 进程,以便它侦听附加请求,然后在 VS Code 中启动调试器会话以附加到该进程。
但是该附加操作可能会很棘手,也许需要很长时间才能在远程计算机上启动,或者可能连接超时。
此版本支持将调试器配置为反向连接。现在可以将远程 Python 进程设置为连接到特定地址(端口号或主机和端口元组),并在 VS Code 中运行附加配置以开始侦听同一地址,以将其附加到进程。
现在,可以使用 VS Code 启动调试器,以便它开始侦听连接请求。当启动 Python 进程时,它将在定义的断点处停止。
其他改进
- 支持连接到 Jupyter hub servers 使用服务器的基本 URL(即 https://111.11.11.11:8000)或用户文件夹(即 https://111.11.11.11:8000/user/theuser)。与密码认证一起使用。
- 增加了配置是否扩展传递给调试器的参数的功能。
- 更新至 jedi 17.1
- 如果工作区根目录中存在 toml 文件,则自动激活扩展名。
更新说明:https://devblogs.microsoft.com/python/python-in-visual-studio-code-july-2020-release/
文章转载自 OSCHINA 社区 [http://www.oschina.net]
首本 VS Code 中文书《Visual Studio Code 权威指南》来啦!希望通过这本书,能带你深入浅出 Visual Studio Code。
-
VScode常用插件
2021-03-19 21:21:25VSCode常用插件 Bookmarks 1. F1输入[打开键盘快捷方式] 2. 输入bookmarks后可以相应更改添加/删除标签(即开关选项),...Kite Autocomplete Plugin for Visual Studio Code koroFileHeader 1.文件头部添加注释VSCode常用插件
-
Bookmarks
1. F1输入[打开键盘快捷方式] 2. 输入bookmarks后可以相应更改添加/删除标签(即开关选项),跳转到上一个标签和跳转到下一个标签的快捷键 3. 我设置的是PgUp跳转到上一个标签,PgDn跳转到下一个标签,Ctrl+T添加或删除标签
-
Bracket Pair Colorizer
-
Chinese(Simplified) Language Pack for VScode
-
Kite Autocomplete Plugin for Visual Studio Code
-
koroFileHeader
1.文件头部添加注释: 快捷键:window:ctrl+alt+i,mac:ctrl+cmd+i, linux: ctrl+alt+i 2.在光标处添加函数注释: 快捷键:window:ctrl+alt+t,mac:ctrl+cmd+t,linux: ctrl+alt+t
自定义注释模板:F1输入settings,点击【首选项:打开设置(json)】在json文件中添加如下内容
"fileheader.customMade": { "Description": "", "Autor": "作者名", "Date": "Do not edit", "LastEditors": "作者名", "LastEditTime": "Do not edit" }, //文件头部注释,来自koroFIleHeader "fileheader.cursorMode": {//函数注释 "description": "", "param": "", "return": "", },
-
One Dark Pro
-
vscode-icons
关于文件夹折叠:如下图
可以在设置中输入compactFolders,取消勾选即可有下面的效果
-
其他:Excel Viewer,Rainbow CSV
-
常用快捷键
1.格式化代码:ctrl+shift+F 2.参数提示功能:ctrl+shift+space 可按F1输入[首选项:打开键盘快捷方式],点击进去后输入[参数提示]设置
-
-
vscode标题栏_推荐VScode十大实用插件
2021-01-30 14:32:441.代码智能提示Kite AI Code AutoCompleteKite 支持js与python的多行补全功能,可帮助你在保持流程顺畅的同时加快编码速度。推荐指数:????GitHub:https://github.com/kiteco/vscode-pluginVSCode地址:...本文来源于:老袁聊前端
宇宙最好用的编译器:Vscode,推荐以下十大使用插件!
1.代码智能提示
Kite AI Code AutoComplete
Kite 支持js与python的多行补全功能,可帮助你在保持流程顺畅的同时加快编码速度。
- 推荐指数: ????
- GitHub:https://github.com/kiteco/vscode-plugin
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=TabNine.tabnine-vscode
Tabnine Autocomplete AI
Tabnine 是功能强大的人工智能助手,能帮你更快地敲代码并减少错误。Tabnine 基于 AI 深度学习算法,能够预测你编码意图并提供一键式代码完成, 而且完全免费。
- 推荐指数:?????
- github:https://github.com/codota/tabnine-vscode
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=TabNine.tabnine-vscode
- 备注:低配电脑慎用
JavaScript (ES6) code snippets
支持JavaScript和TypeScript
- 推荐指数:???
- github:xabikos/vscode-javascript
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=xabikos.JavaScriptSnippets
- 备注:常规ES代码提示块
2.主题+文件夹Icons
❝
依据个人喜好配置
❞Night Owl
Night Owl 给夜猫专用主题,而且针对喜欢深夜工作的码农进行了优化,甚至顾及到了有色盲和夜盲的人。
- 推荐指数:?????
- github:https://github.com/sdras/night-owl-vscode-theme
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=sdras.night-owl
One Dark Pro
One Dark Pro Atom 的标志性 One Dark 主题,也是VS Code中安装次数最多的主题之一。
- 推荐指数:????
- github:https://github.com/Binaryify/OneDark-Pro
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=zhuangtongfa.Material-theme
Material Theme
Material Theme 号称最适配Visual Studio Code的史诗般的主题。
- 推荐指数:???
- github:https://github.com/material-theme/vsc-material-theme
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-material-theme
Ayu
一个色彩鲜艳的主题,提供三种版本:dark,light,mirage。
Ayu - 推荐指数:????
- github:https://github.com/ayu-theme/vscode-ayu
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=teabyii.ayu
Material Theme Icons
Material Theme Icons - 推荐指数:?????
- github:https://github.com/material-theme/vsc-material-theme-icons
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=Equinusocio.vsc-material-theme-icons
Dracula Theme
Dracula Theme - 推荐指数:?????
- github:https://github.com/gerane/VSCodeThemes
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=gerane.Theme-Dracula
3.大型项目新建文件
advanced-new-file
- github:patbenatar/vscode-advanced-new-file
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=patbenatar.advanced-new-file
4.分享代码
carbon-now-sh
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=ericadamski.carbon-now-sh
5.运行调试代码
Code Runner
- github:https://github.com/formulahendry/vscode-code-runner
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=formulahendry.code-runner
javascript console utils
帮你一键插入
console.log()
并自动填充内容。- github:https://github.com/whtouche/vscode-js-console-utils
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=whtouche.vscode-js-console-utils
Live Server
启动具有实时重新加载功能的本地开发服务器,可以处理静态和动态页面。
Live Server - github:https://github.com/ritwickdey/vscode-live-server
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer
6.字体选项
❝
依据个人喜好配置
❞Cascadia Code(配置fontLigatures)
Cascadia Code 微软官方推荐,值得拥有~
- 推荐指数:?????
- 下载地址:https://github.com/microsoft/cascadia-code/releases
Fira Code
Fira Code - 推荐指数:????
- 下载地址:https://github.com/tonsky/FiraCode
Hack Nerd Font
Hack Nerd Font - 推荐指数:?????
- github:
- 下载地址:https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/Hack
Menlo
- 推荐指数:???
Chalkboard
- 推荐指数:???
Consolas
- 推荐指数:???
Geeza pro
- 推荐指数:???
Roboto Mono
- 推荐指数:???
7.自定义VsCode
Fix VSCode Checksums
用于在更改VSCode核心文件后调整校验和的扩展。一旦应用了校验与更改并重新启动VSCode,就能够消除所有关于核心文件被修改的警告,例如标题栏中显示[Unsupported]或启动时出现以下对话框:
- 推荐指数:?????
- github:https://github.com/lehni/vscode-fix-checksums
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=lehni.vscode-fix-checksums
Custom CSS and JS Loader
- 推荐指数:????
- github:https://github.com/be5invis/vscode-custom-css
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=be5invis.vscode-custom-css
background
给你的VSCode加个背景
- 推荐指数:?????
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=shalldie.background
SynthWave '84
据作者说他想穿越回1984年的夏天,因为他喜欢那个年代的霓虹灯。。。
SynthWave '84 - 推荐指数:?????
- github:https://github.com/robb0wen/synthwave-vscode
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=RobbOwen.synthwave-vscode
Vibrancy
半透明效果
Vibrancy - 推荐指数:?????
- github:https://github.com/EYHN/vscode-vibrancy
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=eyhn.vscode-vibrancy
8.提升你的正则技能
RegExp Preview and Editor
https://marketplace.visualstudio.com/items?itemName=Lulus.vscode-regexp-preivew
Regex Previewer
https://marketplace.visualstudio.com/items?itemName=le0zh.vscode-regexp-preivew
9.美化JavaScript代码
Prettier - Code formatter
Prettier - Code formatter - 推荐指数:???
- github:https://github.com/prettier/prettier-vscode
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=esbenp.prettier-vscode
ESLint
ESLint 地球人都知道,不多说了
- 推荐指数:?????
highlight-icemode
- 推荐指数:???
- github:https://github.com/EsIce/highlight-icemode
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=iceliu.highlight-icemode
Bracket Pair Colorizer 2
Bracket Pair Colorizer 2 - 推荐指数:???
- github:https://github.com/CoenraadS/Bracket-Pair-Colorizer-2
- VSCode地址:https://marketplace.visualstudio.com/items?itemName=CoenraadS.bracket-pair-colorizer-2
10.Package.json 及时查看包版本号
Version Lens
Version Lens - VSCode地址:https://marketplace.visualstudio.com/items?itemName=pflannery.vscode-versionlens
最后是主题推荐:Night Owl + Material Theme Icons + Vibrancy + Cascadia Code
-
vscode标题栏_Vscode十大实用插件
2021-01-26 08:09:44下面是老袁的 VSCode 效果图,用起来6的飞起。大家先关注这个身高170体重170的程序员,然后看最新一期的视频中的效果。1.代码智能提示Kite AI Code AutoCompleteKite 支持js与python的多行补全功能,可帮助你在保持... -
vscode配置python环境以及使用json文件配置默认解释器、代码自动保存、pydesigner、kite
2020-05-06 10:56:56因为我安装的是最新版的vscode(1.44.2),貌似安装插件之后是自动激活的, 点击安装,安装成功之后: 安装python插件: 同样在左边搜索“python”插件,然后安装,接下来运行代码: 如果你... -
vscode自动填充地址插件_推荐VScode十大实用插件
2020-12-22 11:47:091.代码智能提示Kite AI Code AutoCompleteKite 支持js与python的多行补全功能,可帮助你在保持流程顺畅的同时加快编码速度。推荐指数:????GitHub:https://github.com/kiteco/vscode-pluginVSCode地址:... -
mac vscode 背景半透明_Vscode十大实用插件
2020-12-20 22:13:52下面是老袁的 VSCode 效果图,用起来6的飞起。大家先关注这个身高170体重170的程序员,然后看最新一期的视频中的效果。1.代码智能提示Kite AI Code AutoCompleteKite 支持js与python的多行补全功能,可帮助你在保持... -
vscode代码提示问题
2020-02-27 13:03:03在使用vscode时发现无法进行代码补全,这是多么糟糕的体验。 2.寻找方案 查阅大量资料,有各种解决办法,但我认为最好的方式就是第三方工具,强烈推荐kite。 Kite is a plugin for your IDE that uses machine ... -
vscode python自动补全插件_推荐一款Python智能自动补全神器-Kite,提高50%编程效率...
2020-12-07 05:51:24图/文:迷神撸python代码一定要有好的开发工具,而一个好的开发工具,必须要有一个强大智能自动功能。现在,是时候跟大家说说这...但是,虽然Kite是一个编辑器插件,但是,Kite是用机器学习的方式给你提供 Python 有... -
推荐VScode十大实用插件
2020-12-19 13:52:00本文来源于:老袁聊前端宇宙最好用的编译器:Vscode,推荐以下十大使用插件!1.代码智能提示Kite AI Code AutoCompleteKite 支持js与python的多行补全... -
VSCode C# 配置小记
2021-03-01 20:41:02于是乎想到了在vscode上再配置一个c#环境。而因为我用vs预装了sdk,所以以下步骤会和网络上其他教程多少有些出入。 一、插件安装: 这里网络上推荐的一般都是 c#,c#fixformat,c# extensions 第一个和第三个一下就... -
vscode使用python时的常用插件
2020-11-13 11:16:53Python Anaconda:python虚拟环境管理 Jupyter:支持notebook Kite AI Code AutoComplete vscode-icons:使用不同的图标来显示不同文件 -
New install for vscode - can't create account to login
2020-12-28 21:51:08<div><p>Installed kite for vscode/win10, prompted to create account - says kite unavailable, then goes back to prompt to create account. <p>Could this be a blocked port or proxy issue? Can't find... -
VSCode Onboarding with Command Palette and for First-Time Users
2020-12-26 09:03:19m able to get this consistent if I stop all kite processes, <code>rm -rf ~/.kite, start up Kite, then run the vscode extension debug environment.)</li><li>Commands for <code>Kite: Go Tutorial</code> ... -
vscode_修改智能提示选中应用语句修改快捷键
2021-04-14 11:12:31文章目录acceptSeletedSuggestion: acceptSeletedSuggestion: 有时候我们用了许多ai编码插件(比如tabnine、kite)这时候用enter可能会触发不需要的替换,可以将enter改掉,使用tab来选中修改(类似vs) -
Kite doen't work with WSL
2020-12-27 16:04:18<div><p>Hi, <p>I have Kite installed on Windows, but I can't get the VS Code extension to see the kite server running as I am using WSL. <p>Is there a workaround?...kiteco/vscode-plugin</p></div> -
巧用kite提高代码编写速率,附多平台安装教程
2020-06-29 18:19:071.kite是什么? kite是自动补全工具 2、如何安装kite? 2.1、linux下安装kite 前提:1、系统为x86架构;2、切换用户,不能使用root用户 执行命令: bash -c "(wget -q -O - ...2.2 vscode安装kite ... -
not recognizing kite engine login
2020-12-25 19:52:33<div><p>Surfaced in QA. The image below describes what's going on. Feel free to close if this is already a known issue <p><img alt="image" src=...kiteco/vscode-plugin</p></div> -
Got "Kite Install" tab when I've always been logged in
2020-12-27 16:11:26<div><p>I had VS Code open for a long time, and this came up. <p>Maybe it was triggered by a Kite update? (Pure speculation) <p>When I clicked on '...kiteco/vscode-plugin</p></div> -
pycharm 敲代码时的效果插件_一款Python编程的自动补全插件神器——kite
2021-01-04 20:25:26最近发现了一款Python编程的插件神器——kite,相见恨晚啊,它是一款基于AI技术的自动补全功能插件,可用于大部分的Python编程环境,如PyCharm、VSCode、Vim、Sublime Text等等。就连Python 之父 Guido van Rossum ... -
VS code python 开发插件
2021-01-25 11:31:24ARPEL 实时观察代码输出结果和变量 ...kite 查看说明文档 tabnine 代码补全 jupyter 在vscode中使用jupyter prettier 代码格式规范 Python Docstring Generator 自动生成函数解释 vscode-icons 文件图标 ... -
Does this not work in remote development mode?
2020-12-26 09:03:22<div><p>I installed Kite on my desktop just to check it out, but my code is on a remote machine. My workflow is editing the code using VSCode's remote development feature. Turns out Kite has to be... -
hover markdown not rendered properly
2020-12-27 00:57:44<p>Kite constantly seems to stop working and then just show path locations when I mouse over things in vscode. Starting to become more of a hindrance than anything else. I have the latest core ... -
Extension causes high cpu load
2020-12-27 00:49:05<div><p><a href="https://github.com/kiteco/vscode-plugin/files/2997249/kiteco.kite-unresponsive.cpuprofile.txt">kiteco.kite-unresponsive.cpuprofile.txt</a></p> <ul><li>Issue Type: <code>Performance... -
Indexing won't stop.
2020-12-25 19:52:26<div><p>So I just installed Kite and wanted to try it really quick. So I fired up VSCode set everything up and opened an empty .py file. After indexing for about 45 minutes I first restarted my ... -
Standardize commands
2020-12-26 09:09:33<div><p>Refer to <a href="https://kite.quip.com/HinNAHAoaVpH/Kite-commands-in-editors">this doc</a> to see the in-depth discussion of these commands.</p> ...kiteco/vscode-plugin</p></div> -
PowerShell Preview Integrated Console v2020.9.0 fails to start after 1.52.0 update
2020-11-26 06:56:21|kite|kiteco|0.134.0| |MagicPython|magicstack|1.1.0| |powershell-preview|ms-vscode|2020.9.0| |python|ms-python|2020.10.332292344| |python|tht13|0.2.3| |python-extension-pack|donjayamanne|1.6.0| |... -
opencv补全
2020-08-05 18:21:41最近使用vscode,导入opencv后,发现突然没有函数补全提示了,为此可以使用插件Kite Autocomplete for Python and JavaScript,将其安装后就会有代码提示了 -
Cannot uninstall the plugin
2020-12-25 19:41:21<p>I tried removing the <code>kiteco.kite-0.110.0/</code> from ~/.vscode/extensions, but reloading VSCode brings it up. What is this hacking? </p><p>该提问来源于开源项目:kiteco/vscode-plugin...