vscode running file rename participant

news/2024/7/16 8:50:56 标签: vscode, ide, 编辑器

vscode running file rename participant

problem

vscode中 重命名一个文件 就会提示 vscode running file rename participant
并且时间挺长,太耽误事了。

reason

原因:

  • 以为是插件,删除了插件还是有
  • 搜索设置,发现有个 rename participant 相关选项
  • 个人推测:这个功能的意思是,当重命名了文件,会去其他文件查找是否关联,从而自动改为重新命名后的文件

solution

进入set,搜索rename,将相关配置改0即可

Snipaste_2022-10-02_17-27-24


http://www.niftyadmin.cn/n/1462983.html

相关文章

Warning: [antd: Tabs] Tabs.TabPane is deprecated. Please use `items` directly.

Warning: [antd: Tabs] Tabs.TabPane is deprecated. Please use items directly. problem 控制台报错 Warning: [antd: Tabs] Tabs.TabPane is deprecated. Please use items directly. reason https://ant.design/components/tabs/ Usage upgrade after 4.23.0# antd ta…

DevTools failed to load source map: Could not parse content for http://localhost:8000/index.js.map:

DevTools failed to load source map: Could not parse content for http://localhost:8000/index.js.map: Unexpected token ‘<’, "<!DOCTYPE "… is not valid JSON problem 控制台报错 DevTools failed to load source map: Could not parse content f…

[antd: Menu] `children` will be removed in next major version. Please use `items` instead.

devScripts.js:6523 Warning: [antd: Menu] children will be removed in next major version. Please use items instead. problem 原因&#xff1a;https://ant.design/components/menu/ reason 修改antd menu组件的使用方式 solution // before <Menu className{s…

File ignored because of a matching ignore pattern. Use “--no-ignore“ to override

File ignored because of a matching ignore pattern. Use “–no-ignore” to override problem eslint 报错 File ignored because of a matching ignore pattern. Use "--no-ignore" to overridereason 原因不明 solution 解决办法是 .eslintignore 修改忽略…

浅析便捷生活的新选择——抖音本地服务

抖音是一款风靡全球的短视频分享平台&#xff0c;其本地服务功能的发展也逐渐引起了广泛关注。本地服务是指抖音平台上的用户可以通过平台直接查找并使用周边的各种服务&#xff0c;比如美食外卖、快递配送、家政服务等。本地服务的发展对用户和商家都带来了很多便利和机遇。 首…

Nginx directory index of is forbidden

Nginx directory index of is forbidden problem Nginx directory index of is forbidden reason alias配置原因&#xff0c;最后的目录需要斜线结尾 solution # before location / {alias /path/to/dist; }# after location / {alias /path/to/dist/; # 注意最后…

Unhandled Rejection (ChunkLoadError): Loading chunk mf-dep_vendors-node_modules_core-js_index_j

Unhandled Rejection (ChunkLoadError): Loading chunk mf-dep_vendors-node_modules_core-js_index_js failed. problem antd-pro框架(基于umi) 重启服务后&#xff0c;常常汇报这个错 Unhandled Rejection (ChunkLoadError): Loading chunk mf-dep_vendors-node_modules_c…

Warning: Can‘t perform a React state update on an unmounted component.

Warning: Can’t perform a React state update on an unmounted component. This is a no-op, but it indicates a memory leak in your application. To fix, cancel all subscriptions and asynchronous tasks in a useEffect cleanup function. problem pro-antd 开发模式…