WebStorm效率提升
  # 切换shell为zsh
shell路径改为/bin/zsh 
# 插件
# GitToolBox
git功能扩展
- 每行代码都可以看到提交记录
 
 # Translation
翻译插件
快捷键command+control + O
 # Color Highlighter
颜色代码直接显示为对应颜色
 
目前测试样式文件中不生效(如less文件)
# React snippets
为React开发提供了很多快捷键和代码片段

# 解决不识别 @ 目录
// 根目录下新建 jsconfig.json
{
  "compilerOptions"
:
  {
    "baseUrl"
  :
    "./",
            "paths"
  :
    {
      "@/*"
    :
      [
        "src/*"
      ]
    }
  }
,
  "exclude"
:
  [
    "node_modules",
    "dist"
  ]
}
 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
编辑  (opens new window)
  上次更新: 2023/03/06
← 网站 markdown语法→