Skip to content

Latest commit

 

History

History
117 lines (59 loc) · 2.26 KB

phpstorm.md

File metadata and controls

117 lines (59 loc) · 2.26 KB

PHPStorm 配置

基础配置

  • Theme: Darcula

  • Scheme: Solarized Dark

  • Font Size: 28

  • Show tool window button

  • 开启 Show Toolbar/Docked Mode, 禁用Pinned/Floating/Spliting Mode

  • Show line number

  • Show whitespaces

  • Code Folding: 关闭所有

  • Code Style: Align key-value pairs 对齐数组的箭头

  • Code Style: Add a comma after last element in multiline array 数组最后一个元素带上逗号

  • Wrapping and Braces: Class field/constant groups: Align fields in columns, Align constants 对齐字段和类常量等号

  • Code Style: PHP 另存Default至Mine,应用上述修改

  • Mark modified tabs with asterisk 修改了未保存的文件标准星号

  • Structure: 配置在右侧,自动隐藏

  • Highlight matched brace/current scope/usages of element at caret

  • Plugins: 禁用无用的插件

  • 配置PHP Interpreter

快捷键 for Mac

  • 删除Update Project的快捷键: Command + T

  • Command + T : 打开Terminal

  • Shift Double : 搜索任何想要的

  • Command + Shift + O : 打开任意文件

  • Command + O : 打开任意类

  • Alt + delete : 删除单词

  • Command + delete : 删除行

  • Command + E : 最近编辑的文件

  • Command + Click : 导航至定义

  • Command + D : 复制行

  • Command + [ : 返回上一次编辑地方

  • Command + ] : 前往下一次编辑地方

  • Command + Shift + Up : 向上移动一行

  • Command + Shift + Down : 向下移动一行

  • Command + F : 查找

  • Command + R : 替换

  • Command + Shift + F : 在文件中搜索

  • Command + Shift + R : 在文件中搜索并替换

  • Command + Shift + V : 剪贴板

  • Command + ` : 窗口间切换

  • Command + B : 跳转到声明

  • Command + P : 函数参数提示

  • Command + J : 代码完成提示

  • Command + L : 跳转某行

  • Command + - : 折叠代码

  • Command + + : 展开代码

  • Command + . : 折叠选中的代码

  • Command + / : 当行注释

  • Command + Alt + / 或者 Ctrl + Shift + / : 块注释

  • Command + Alt + L : 格式化代码

  • Command + Shift + U : 大小写切换

  • Command + Alt + T : 代码包围例如try catch

  • Command + Enter : 生成代码

  • Command + Z : 撤销

  • Command + Shift + Z : 反撤销

  • Alt + Click : 多点编辑

  • Command + Ctrl + G : 自动选中多点编辑

  • Alt + Up : 选中代码块儿

  • Ctrl + R : Run