visual-studio-code 相关问题

Visual Studio Code是一个可用于Linux,OS X和Windows的开源文本编辑器。它包括对调试,嵌入式Git控件和丰富的开发体验(如智能代码完成)的支持。它是微软推动的开源软件,基于像GitHub的Atom这样的Electron。

如何使用自定义 CSS 更改 VSCode 中的上下文菜单字体?

我正在尝试通过注入自定义 CSS 来自定义 Visual Studio Code 中上下文菜单的字体。然而,我面临着一些挑战: 上下文菜单检查:当我尝试检查 con...

回答 1 投票 0

是否可以在 Visual Studio 中安装 VS Code 扩展,反之亦然?

我安装了 Visual Studio,但没有安装 Visual Studio Code。 Visual Studio Code Marketplace 中有可用的扩展,但 Visual Studio Marketplace 中没有可用的扩展,我会

回答 1 投票 0

VSCode 暗模式 PDF 查看器

有谁知道 VSCode 中的扩展/PDF 查看器,可以轻松反转或更改背景颜色(最好只有背景)。 我知道 LaTeX Workshop 设置但是...

回答 1 投票 0

选择提供哪些相关代码块作为 VS Code Github Copilot 的上下文

我在 VS Code 上使用 Github Copilot,版本 1.95 Oct 发布。 我一直想知道如何提供手动选择的文件和代码块上下文以在副驾驶聊天中询问。 基本上,我想要...

回答 1 投票 0

如何更改 Visual Studio 代码中终端提示的颜色?

我当前的终端有白色提示和白色输出 就像这个 https://vscode.one/img/terminal-font-size/terminal-font-size.gif 我看到了这个关于更改 VS 的终端颜色颜色主题的帖子

回答 2 投票 0

为什么 VS Code 将 .cs 文件视为纯文本,而其他一切正常?

我在 Visual Studio Code 中打开了一个 Unity 项目,其中包含 3 个 .csproj 文件、一个 launch.json 和 settings.json 文件。我使用 VS Code 插件来实现统一,并使用 Unity Tools 扩展来实现 VS Code。 如果我

回答 2 投票 0

如何使用 Typescript 在 Vue 3 中正确循环引用组件?

我有两个 Vue 组件。为了简单起见,我将它们称为组件 A 和组件 B。 A组份 {{ recursive.text }} 组件 A < 我有两个 Vue 组件。为了简单起见,我将它们称为组件 A 和 组件 B。 A成分 <template> <div>{{ recursive.text }} component A</div> <component-b v-if="recursive.value" :recursive="recursive.value" /> </template> <script lang="ts"> import { defineAsyncComponent, defineComponent } from 'vue'; export default defineComponent({ name: 'ComponentA', components: { ComponentB: defineAsyncComponent(() => import('./B.vue')), }, }); </script> <script lang="ts" setup> interface RecursiveProp { text: string; value?: RecursiveProp; } const props = defineProps<{ recursive: RecursiveProp }>(); </script> B 成分 <template> <div>{{ recursive.text }} component B</div> <component-a v-if="recursive.value" :recursive="recursive.value" /> </template> <script lang="ts"> import { defineAsyncComponent, defineComponent } from 'vue'; export default defineComponent({ name: 'ComponentB', components: { ComponentA: defineAsyncComponent(() => import('./A.vue')), }, }); </script> <script lang="ts" setup> interface RecursiveProp { text: string; value?: RecursiveProp; } const props = defineProps<{ recursive: RecursiveProp }>(); </script> 例如,当我将 Component A 导入另一个组件并向其传递正确的 props 时,代码可以正常工作,并且在浏览器中不会显示任何错误。 Component A 和 Component B 根据给定的 prop 递归渲染指定的次数。但由于某种原因,当组件以这种方式相互引用时,Visual Studio Code 会发出抱怨。我在下面附上了错误的图片。 组件 A 和 组件 B 中都存在此错误。 在 Vue 文档中,这个问题在 Handling Edge Cases 部分中引用。唯一的问题是它是 Vue 2 文档:https://v2.vuejs.org/v2/guide/components-edge-cases.html#Circular-References-Between-Components 在 Vue 3 中,您可以使用 defineAsyncComponent。这使我的代码可以工作,但使错误出现在 Visual Studio 代码中:https://vuejs.org/guide/components/async.html#async-components= 我知道我可以全局注册其中一个组件。但这是我想避免的事情。 有没有办法使用 Typescript 在 Vue 3 中正确循环引用组件? 看来这个问题只影响<script lang="ts">,与IDE或<script setup lang="ts">无关。 解决方法是在 <script setup lang="ts"> 而不是 <script lang="ts"> 中注册递归异步组件: <!-- A.vue --> <template> <div>{{ recursive.text }} component A</div> <component-b v-if="recursive.value" :recursive="recursive.value" /> </template> <script lang="ts" setup> import { defineAsyncComponent } from 'vue' 👇 const ComponentB = defineAsyncComponent(() => import('./B.vue')) interface RecursiveProp { text: string; value?: RecursiveProp; } const props = defineProps<{ recursive: RecursiveProp }>(); </script> <!-- B.vue --> <template> <div>{{ rec.text }} component B</div> <component-a v-if="rec.value" :recursive="rec.value" /> </template> <script lang="ts" setup> import { defineAsyncComponent, computed } from 'vue' 👇 const ComponentA = defineAsyncComponent(() => import('./A.vue')) interface RecursiveProp { text: string; value?: RecursiveProp; } const props = defineProps<{ recursive: RecursiveProp }>(); // compute stop-condition for the recursion const rec = computed(() => ({ ...props.recursive, value: undefined } as RecursiveProp)) </script> 演示 我想出了一个不同的解决方案,使用defineOptions(它需要Vue 3.3)。 <!-- A.vue --> <template> <div>{{ recursive.text }} component A</div> <component-b v-if="recursive.value" :recursive="recursive.value" /> </template> <script lang="ts" setup> import { defineAsyncComponent, defineOptions } from 'vue' defineOptions({ components: { ComponentB: defineAsyncComponent(() => import('./B.vue')) } }) interface RecursiveProp { text: string; value?: RecursiveProp; } const props = defineProps<{ recursive: RecursiveProp }>(); </script> <!-- B.vue --> <template> <div>{{ rec.text }} component B</div> <component-a v-if="rec.value" :recursive="rec.value" /> </template> <script lang="ts" setup> import { defineAsyncComponent, defineOptions, computed } from 'vue' defineOptions({ components: { ComponentA: defineAsyncComponent(() => import('./A.vue')) } }) interface RecursiveProp { text: string; value?: RecursiveProp; } const props = defineProps<{ recursive: RecursiveProp }>(); // compute stop-condition for the recursion const rec = computed(() => ({ ...props.recursive, value: undefined } as RecursiveProp)) </script>

回答 2 投票 0

VS 代码提交撤消

我有相当多的更改想要提交到新的分支,但我不小心在 VS Code 中的 master 上工作。除非我不小心点击了“

回答 3 投票 0

VS 代码:文件末尾新行未保留

我面临着一个令人恼火的问题,即尽管明确设置了应该执行的操作,但没有为 HTML 和 JavaScript 保存新行。有人可以指导我我做错了什么吗? 格...

回答 5 投票 0

如何使用 Remote-SSH 修复 VS Code 错误:“终端进程无法启动:启动期间发生本机异常(forkpty(3) 失败。)。”?

我已在 VS Code 中安装并使用 Remote-SSH 扩展来访问 Linux 临时环境并远程工作。 设置和连接适用于一个用户,但不允许我连接...

回答 4 投票 0

您没有权限在 Github 上推送。你想创建一个叉子并推它吗

我正在使用 Visual Studio 代码。我使用一个文件创建一个存储库。但该文件未上传,并出现一条警告,指出“您没有权限在 Github 上推送。您会...

回答 3 投票 0

VS 代码调试控制台不显示日志的行号

这对我来说似乎最近才发生变化。 我喜欢记录一些消息并查看它来自的行/文件,但现在当我记录对象时,行号不再显示。 大家有没有我...

回答 2 投票 0

删除未跟踪的文件

我正在尝试从 git status 列表中删除 node_modules 未跟踪的文件,但将它们保留在本地存储库中。 使用: Visual Studio 代码 1.0.0 git 版本 2.8.2.windows.1 Windows 7 64 位 我有...

回答 3 投票 0

如何使用 Python 3.13 修复 VS Code 中的 Python REPL?

我在将 Python 文件中的代码发送到 VS Code 中的交互式 REPL 时遇到问题(使用 shift + Enter)。单行代码和一行函数工作正常,但任何具有多个行的代码块...

回答 1 投票 0

以编程方式关闭 vscode 中的问题弹出窗口

我将 Visual Studio Code 中的键绑定切换到我未使用的键 F19,以转到下一个问题(以前是 fn+F8),如下所示(keybindings.json): { “键”:“f19”, “当……

回答 1 投票 0

VSCode 中数组和长行的多行格式更漂亮

当我使用长数组和控制台时,Prettier 将其格式化为多行,这在某些情况下很烦人。我希望它们在达到一定长度后断裂。我可以为更漂亮的w设定一个断点吗...

回答 2 投票 0

VS Code“资源管理器”搜索未找到文件夹名称

我回来了,VS code 在做什么? 截至今天,2024 年 10 月 4 日,我的 vs 代码在发布此内容的一个小时前更新了;资源管理器搜索功能停止工作。我之前发布过一些

回答 3 投票 0

打开多个 VSCode 窗口时在 2 个 VSCode 窗口之间切换的快捷方式

我使用的是Mac。 我打开了几个 VSCode 窗口。 我只想在 2 个(上次查看的)窗口之间切换。有谁知道这样做的键盘快捷键是什么? 我尝试了命令+`,但是...

回答 3 投票 0

无法设置vscode练习python

今天只是为了练习,我下载并安装了 vscode。 我看到了关于安装 vscode for python 的教程,并完全按照过程进行操作。 但完成后,每当任何 pytho...

回答 2 投票 0

如何改进 VS Code 的 Postman 扩展中的 JSON 格式?

我正在使用 Visual Studio Code 中的 Postman 扩展来测试我的 API 端点。当我发送请求并接收 JSON 响应时,数据以未格式化的“丑陋”结构显示,

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.