Skip to content

Commit 8ff25e9

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 4e4e046 + c41e443 commit 8ff25e9

File tree

6 files changed

+153
-101
lines changed

6 files changed

+153
-101
lines changed

.vitepress/sidebar/bugs.ts

Lines changed: 16 additions & 100 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
import {
22
androidStudioIcon,
3-
bugIcon, cssIcon,
3+
bugIcon,
44
editorIcon,
5-
elementIcon,
6-
htmlIcon, tauriIcon,
7-
tsIcon,
8-
uniAppIcon,
95
webIcon
106
} from './icons';
117
import { type SidebarType } from '../../package/type';
12-
import androidStudioItems from './learn/android-studio';
8+
import androidStudioItems from './bugs/android-studio';
9+
import windowsItems from './bugs/windows';
10+
import web from './bugs/web';
1311

1412
const bugsSidebar: SidebarType[] = [
1513
{
@@ -22,100 +20,7 @@ const bugsSidebar: SidebarType[] = [
2220
icon: webIcon,
2321
text: '前端',
2422
collapsed: false,
25-
items: [
26-
{
27-
icon: htmlIcon,
28-
text: 'HTML',
29-
collapsed: true,
30-
items: [
31-
{
32-
icon: '🔹',
33-
text: 'img 标签加载对象存储图片后再使用 canvas 调用当前图片,导致图片跨域的问题',
34-
link: '/bugs/web/html/canvas-use-object-storage-image-cross-domain'
35-
}
36-
]
37-
},
38-
{
39-
icon: cssIcon,
40-
text: 'CSS',
41-
collapsed: true,
42-
items: [
43-
{
44-
icon: '🔹',
45-
text: 'UnoCSS 相关错误记录',
46-
link: '/bugs/web/css/unocss_error_records'
47-
}
48-
]
49-
},
50-
{
51-
icon: tsIcon,
52-
text: 'TypeScript',
53-
collapsed: true,
54-
items: [
55-
{
56-
icon: '🔹',
57-
text: '代码警告:TS2307: Cannot find module \'xxx\' or its corresponding type declarations.',
58-
link: '/bugs/web/typescript/warning_ts2307'
59-
}
60-
]
61-
},
62-
{
63-
icon: elementIcon,
64-
text: 'Element-UI & Element-Plus',
65-
collapsed: true,
66-
items: [
67-
{
68-
icon: '🔹',
69-
text: 'el-upload 为啥没法拖拽了?',
70-
link: '/bugs/web/element-ui/el-upload-cant-drag'
71-
},
72-
{
73-
icon: '🔹',
74-
text: 'MessageBox报错Uncaught (in promise) cancel',
75-
link: '/bugs/web/element-ui/messagebox_report_error_uncaught_(in_promise)_cancel'
76-
},
77-
{
78-
icon: '🔹',
79-
text: 'Error: for nested data item, row-key is required.',
80-
link: '/bugs/web/element-ui/table_tree_json_error'
81-
},
82-
{
83-
icon: '🔹',
84-
text: '头像组件第一次地址加载报错后,数据再次获取后无法重新加载',
85-
link: '/bugs/web/element-ui/el-avatar_not_update_after_refetching_the_data'
86-
},
87-
{
88-
icon: '🔹',
89-
text: 'el-form 自定义一个非输入选择的值的规则,但是无法生效的问题',
90-
link: '/bugs/web/element-ui/el-form_customize_rule'
91-
}
92-
]
93-
},
94-
{
95-
icon: uniAppIcon,
96-
text: 'uni-app',
97-
collapsed: true,
98-
items: [
99-
{
100-
icon: '🔹',
101-
text: '新安装包覆盖安装,新增加的页面无法跳转',
102-
link: '/bugs/web/uniapp/overwrite_install_newly_added_page_cannot_jump'
103-
}
104-
]
105-
},
106-
{
107-
icon: tauriIcon,
108-
text: 'tauri',
109-
collapsed: true,
110-
items: [
111-
{
112-
icon: '🔹',
113-
text: '解决无法安装 Wix 和 Nsis 的问题',
114-
link: '/bugs/web/tauri/fix_tauri_cant_install_wix_and_nsis'
115-
}
116-
]
117-
}
118-
]
23+
items: web
11924
},
12025
{
12126
icon: editorIcon,
@@ -129,6 +34,17 @@ const bugsSidebar: SidebarType[] = [
12934
items: androidStudioItems
13035
}
13136
]
37+
},
38+
{
39+
text: '其他',
40+
collapsed: true,
41+
items: [
42+
{
43+
text: 'Windows',
44+
collapsed: true,
45+
items: windowsItems
46+
}
47+
]
13248
}
13349
];
13450

File renamed without changes.

.vitepress/sidebar/bugs/web.ts

Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
import { type SidebarType } from '../../../package/type';
2+
import { cssIcon, elementIcon, htmlIcon, tauriIcon, tsIcon, uniAppIcon } from '../icons';
3+
4+
const web: SidebarType[] = [
5+
{
6+
icon: htmlIcon,
7+
text: 'HTML',
8+
collapsed: true,
9+
items: [
10+
{
11+
icon: '🔹',
12+
text: 'img 标签加载对象存储图片后再使用 canvas 调用当前图片,导致图片跨域的问题',
13+
link: '/bugs/web/html/canvas-use-object-storage-image-cross-domain'
14+
}
15+
]
16+
},
17+
{
18+
icon: cssIcon,
19+
text: 'CSS',
20+
collapsed: true,
21+
items: [
22+
{
23+
icon: '🔹',
24+
text: 'UnoCSS 相关错误记录',
25+
link: '/bugs/web/css/unocss_error_records'
26+
}
27+
]
28+
},
29+
{
30+
icon: tsIcon,
31+
text: 'TypeScript',
32+
collapsed: true,
33+
items: [
34+
{
35+
icon: '🔹',
36+
text: '代码警告:TS2307: Cannot find module \'xxx\' or its corresponding type declarations.',
37+
link: '/bugs/web/typescript/warning_ts2307'
38+
}
39+
]
40+
},
41+
{
42+
icon: elementIcon,
43+
text: 'Element-UI & Element-Plus',
44+
collapsed: true,
45+
items: [
46+
{
47+
icon: '🔹',
48+
text: 'el-upload 为啥没法拖拽了?',
49+
link: '/bugs/web/element-ui/el-upload-cant-drag'
50+
},
51+
{
52+
icon: '🔹',
53+
text: 'MessageBox报错Uncaught (in promise) cancel',
54+
link: '/bugs/web/element-ui/messagebox_report_error_uncaught_(in_promise)_cancel'
55+
},
56+
{
57+
icon: '🔹',
58+
text: 'Error: for nested data item, row-key is required.',
59+
link: '/bugs/web/element-ui/table_tree_json_error'
60+
},
61+
{
62+
icon: '🔹',
63+
text: '头像组件第一次地址加载报错后,数据再次获取后无法重新加载',
64+
link: '/bugs/web/element-ui/el-avatar_not_update_after_refetching_the_data'
65+
},
66+
{
67+
icon: '🔹',
68+
text: 'el-form 自定义一个非输入选择的值的规则,但是无法生效的问题',
69+
link: '/bugs/web/element-ui/el-form_customize_rule'
70+
}
71+
]
72+
},
73+
{
74+
icon: uniAppIcon,
75+
text: 'uni-app',
76+
collapsed: true,
77+
items: [
78+
{
79+
icon: '🔹',
80+
text: '新安装包覆盖安装,新增加的页面无法跳转',
81+
link: '/bugs/web/uniapp/overwrite_install_newly_added_page_cannot_jump'
82+
}
83+
]
84+
},
85+
{
86+
icon: tauriIcon,
87+
text: 'tauri',
88+
collapsed: true,
89+
items: [
90+
{
91+
icon: '🔹',
92+
text: '解决无法安装 Wix 和 Nsis 的问题',
93+
link: '/bugs/web/tauri/fix_tauri_cant_install_wix_and_nsis'
94+
}
95+
]
96+
}
97+
];
98+
99+
export default web;

.vitepress/sidebar/bugs/windows.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import { type SidebarType } from '../../../package/type';
2+
3+
const windowsItems: SidebarType[] = [
4+
{
5+
text: 'Windows11 某些快捷键(Ctrl+Shift+字母)被占用的解决方式',
6+
link: '/bugs/windows/win11_hotkey_conflict_fix'
7+
}
8+
];
9+
10+
export default windowsItems;
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
lastUpdated: 2025/09/21 17:59
3+
---
4+
5+
# Windows11 某些快捷键(Ctrl+Shift+字母)被占用的解决方式
6+
7+
::: tip 相关问题
8+
9+
IDEA 快捷键 `Ctrl+Shift+X` 被占用
10+
11+
:::
12+
13+
## 解决思路
14+
15+
### 1. 已启用软件排查
16+
17+
这是个笨方法:逐个排查已启用的软件,查看该软件中的快捷键设置,看看有没有占用的。
18+
19+
### 2. AMD Software(极有可能)
20+
21+
如果你是 AMD 用户,且安装了 AMD Software(以前叫 Adrenalin),那么你可以搜索并打开它。
22+
23+
![](https://namichong.obs.cn-south-1.myhuaweicloud.com/Blog/images/amd_software.png)
24+
25+
然后点击右上角的齿轮图标,进入设置,禁用掉热键:
26+
27+
![](https://namichong.obs.cn-south-1.myhuaweicloud.com/Blog/images/amd_software_disable_hotkey.png){width="75%"}

src/learn/web/nodejs/use_fnm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ lastUpdated: 2025/08/28 15:50
4040
现在,你可以执行以下命令测试下是否成功:
4141

4242
```shell
43-
fnm -version
43+
fnm --version
4444
```
4545

4646
### 写入脚本

0 commit comments

Comments
 (0)