查看
- Ctrl + B 导航到代码中某处使用的类,方法或变量的声明
- Ctrl + Q 快速查看文档
- Alt + F7 快速查看被使用情况 usage
- Ctrl + P 光标处于函数被调用的地方的括号内,可以查看可能的参数
- Alt+Shift+C to quickly review your recent changes to the project.
- Ctrl + (+-) 收起展开code block
- You can jump directly to any deeply buried file, if you press Ctrl+Shift+N, and type just a couple of characters of the enclosing directories and file names
编辑
- Shift + F6 将caret放置在您想要重命名的变量中,并按Shift+F6(重构重命名),在出现的弹出窗口中输入新名称,或者选择一个建议的名字,然后按Enter键
- Alt + Enter PEP8警告信息忽略: 点击要忽略的错误所在,然后按Alt+Enter,在弹出下拉菜单选择ignore errors like this,就可以快速忽略了
- Ctrl + W 编辑器中的Ctrl + W(扩展选择)选择插入符号处的单词,然后选择源代码的扩展区域。例如,它可能会选择一个方法名称,然后是调用此方法的表达式,然后是整个语句,然后是代码块等。您还可以选择插入符号处的单词和源代码的扩展区域,双击编辑器中的目标区域。
- Ctrl+Shift+Backspace (Navigate | Last Edit Location) brings you back to the last place where you made changes in the code.Pressing Ctrl+Shift+Backspace a few times moves you deeper into your changes history.
- Alt + J 选中多个同样的文本,并且能够同时编辑
- Ctrl + R 替换
- Ctrl + Shift + F 全局查找
- Ctrl + Shift + R 全局替换
- Ctrl+D 复制选定的块或当前行(当没有选择块时)
- Alt + 拖动鼠标 竖向选择
- Ctrl+Alt+T : When you want to catch exceptions thrown by some code fragment, select it in the editor, press (Code | Surround With) and choose try/except. This will automatically generate the except clause.
设置
- Ctrl +后引号 可以在编辑器中直接应用另一种代码风格/着色方案或键盘映射。只需按Ctrl +后引号(View | Quick Switch Scheme),即可指定要更改的方案。
网友评论