Jetbrain 系列 IDE 使用笔记
概述
目前主要使用的 Jetbrain 系列 IDE 有:
- Web:WebStorm
- Python:PyCharm
- Java:IDEA
- Android:Android Studio
- Go:GoLand
在校学生凭 edu 邮箱申请许可。
快捷键
- Ctrl + Alt + L :整理代码
- Alt + Enter :万能键
- Shift + Shift: 搜索
- Shift+Enter:另起一行
- Ctrl+Shift+Enter:向上另起一行
- Ctrl+J:插入常用代码
- Ctrl+Q:查询文档
- Ctrl+D:复制当前行
- Ctrl+R:替换
特殊注释
- TODO
- FIXME
常见问题
unresolved function or method 无法解析的函数或方法
问题描述
使用某些库如 Express.js 时 WebStorm 无法识别某些函数
问题原因
这些函数是在运行时动态添加的,WebStorm 不能通过静态分析解析这些函数
解决方法
为 WebStorm 安装此库的 TypeScript 定义即可,方法是单击库的名字,按 Alt+Enter,然和选择安装 TypeScript 定义即可,如下图:
WebStorm 不能识别 jQuery 的 $ 符号
- First press CTRL + ALT + S and go to settings.
- Then click from the menu Languages & Frameworks
- Select JavaScript from the section below and select Libraries
- In the open menu on the right, click on the Download button and select jquery from the list.
- Download it and apply. It is done.
Links: Jetbrain-系列-IDE-使用笔记