⑴ phpstorm 有哪些奇技淫巧
多敗蔽用快捷鍵
ctrl + F:當前文本查找
ctrl + R:當前文本替換
ctrl + X:刪除行
ctrl + D:復制行
Ctrl + W:遞進式選擇代碼塊。可選中游標所在的單詞或段落,連續按會在原有選中的基礎上再擴察吵州展選中范圍
Ctrl + E:最近文件
Ctrl + N:根據類名查找 可使用2次shift替代
Ctrl + J:插入自定義動態代碼模板
Ctrl + Q 游標所在的變數 / 類名 / 方法名等上面(也可以在提示補充的時候按),顯示文檔內容
Ctrl + K 版本控制提交項目,需要此項目有加入到版本控制才可用
Ctrl + T 版本控制更新項目,需要此項目有加入到版本控制才可用
Ctrl + H 顯示當前類的層次結構
Ctrl + / 注釋游標所在行代碼,會根據當前不同文件類型使用不同的注釋符號
Ctrl + F12 彈出當前文件結構層,可以在彈出的層上直接輸入,進行篩選 == eclipse ctrl+o
Ctrl + Enter 智能分隔行
Shift + F4 對當前打開的文件,使用新Windows窗口打開,舊窗口保留
Shift + F6 對文件 / 文件夾 重命名
shift+tab取消縮進
Shift + ESC 隱藏當前 或 最後一個激活的工具窗口
書簽好好學
ctrl+滑鼠左鍵 加入書簽
ctrl+f11 加入書簽
shift+f11 顯示所有書簽
ctrl+1,2,3,4,5...定位到具體書簽
Ctrl + Shift + 1,2,3...9 快速添加指定數值的書簽
Alt + ` 顯示版本控制常用操作菜單彈出層
Alt + Q 彈出一個提示,顯示當前類的聲明 / 上下文信息
Alt + F7 查找游標所在的方法 / 變數 / 類被調用的地方= edit>find>find usages
Alt + Enter IntelliJ IDEA 根據游標所在問題,提供快速修復選擇,游標放在的位置不同提示的結果也不同 (必備)
Alt + Insert 代碼自動生成,如生成對象的 set / get 方法,構造函數,toString() 等
Alt + 左方向鍵 按左方向切換當前已打開的文件視圖
Alt + 右方向鍵 按右方向切換碰沖當前已打開的文件視圖
Alt + 前方向鍵 當前游標跳轉到當前文件的前一個方法名位置
Alt + 後方向鍵 當前游標跳轉到當前文件的後一個方法名位置
Ctrl + Alt + L 格式化代碼,可以對當前文件和整個包目錄使用 (必備)
Ctrl + Alt + O 優化導入的類,可以對當前文件和整個包目錄使用 (必備)
Ctrl + Alt + T 對選中的代碼彈出環繞選項彈出層
Ctrl + Alt + B 在某個調用的方法名上使用會跳到具體的實現處,可以跳過介面
Ctrl + Alt + 左方向鍵 退回到上一個操作的地方 (必備) //建議修改成alt+左
Ctrl + Alt + 右方向鍵 前進到上一個操作的地方 (必備) //建議修改成alt+右
Ctrl + Shift + F 根據輸入內容查找整個項目 或 指定目錄內文件 (必備)
Ctrl + Shift + R 根據輸入內容替換對應內容,范圍為整個項目 或 指定目錄內文件 (必備)
Ctrl + Shift + Z 取消撤銷 (必備)
Ctrl + Shift + N 通過文件名定位 / 打開文件 / 目錄,打開目錄需要在輸入的內容後面多加一個正斜杠 (必備)
Ctrl + Shift + U 對選中的代碼進行大 / 小寫輪流轉換 (必備)
Ctrl + Shift + / 代碼塊注釋 (必備)
Ctrl + Shift + + 展開所有代碼
Ctrl + Shift + - 折疊所有代碼
Ctrl + Shift + F9 編譯選中的文件 / 包 / Mole
Ctrl + Shift + F12 編輯器最大化
Ctrl + Shift + Enter 自動結束代碼,行末自動添加分號 (必備)
Ctrl + Shift + Backspace 退回到上次修改的地方
Alt + Shift + N 選擇 / 添加 task
F2: 跳轉到下一個高亮錯誤 或 警告位置
F7: debug 對應eclipseF5
F8: debug 下一步
F9: debug 下一個斷點
F11 添加書簽
Ctrl
快捷鍵 介紹
Ctrl + F 在當前文件進行文本查找 (必備)
Ctrl + R 在當前文件進行文本替換 (必備)
Ctrl + Z 撤銷 (必備)
Ctrl + Y 刪除游標所在行 或 刪除選中的行 (必備)
Ctrl + X 剪切游標所在行 或 剪切選擇內容
Ctrl + C 復制游標所在行 或 復制選擇內容
Ctrl + D 復制游標所在行 或 復制選擇內容,並把復制內容插入游標位置下面 (必備)
Ctrl + W 遞進式選擇代碼塊。可選中游標所在的單詞或段落,連續按會在原有選中的基礎上再擴展選中范圍 (必備)
Ctrl + E 顯示最近打開的文件記錄列表
Ctrl + N 根據輸入的 類名 查找類文件
Ctrl + G 在當前文件跳轉到指定行處
Ctrl + J 插入自定義動態代碼模板
Ctrl + P 方法參數提示顯示
Ctrl + Q 游標所在的變數 / 類名 / 方法名等上面(也可以在提示補充的時候按),顯示文檔內容
Ctrl + U 前往當前游標所在的方法的父類的方法 / 介面定義
Ctrl + B 進入游標所在的方法/變數的介面或是定義處,等效於 Ctrl + 左鍵單擊
Ctrl + K 版本控制提交項目,需要此項目有加入到版本控制才可用
Ctrl + T 版本控制更新項目,需要此項目有加入到版本控制才可用
Ctrl + H 顯示當前類的層次結構
Ctrl + O 選擇可重寫的方法
Ctrl + I 選擇可繼承的方法
Ctrl + + 展開代碼
Ctrl + - 折疊代碼
Ctrl + / 注釋游標所在行代碼,會根據當前不同文件類型使用不同的注釋符號 (必備)
Ctrl + [ 移動游標到當前所在代碼的花括弧開始位置
Ctrl + ] 移動游標到當前所在代碼的花括弧結束位置
Ctrl + F1 在游標所在的錯誤代碼處顯示錯誤信息
Ctrl + F3 調轉到所選中的詞的下一個引用位置
Ctrl + F4 關閉當前編輯文件
Ctrl + F8 在 Debug 模式下,設置游標當前行為斷點,如果當前已經是斷點則去掉斷點
Ctrl + F9 執行 Make Project 操作
Ctrl + F11 選中文件 / 文件夾,使用助記符設定 / 取消書簽
Ctrl + F12 彈出當前文件結構層,可以在彈出的層上直接輸入,進行篩選
Ctrl + Tab 編輯窗口切換,如果在切換的過程又加按上delete,則是關閉對應選中的窗口
Ctrl + Enter 智能分隔行
Ctrl + End 跳到文件尾
Ctrl + Home 跳到文件頭
Ctrl + Space 基礎代碼補全,默認在 Windows 系統上被輸入法佔用,需要進行修改,建議修改為 Ctrl + 逗號 (必備)
Ctrl + Delete 刪除游標後面的單詞或是中文句
Ctrl + BackSpace 刪除游標前面的單詞或是中文句
Ctrl + 1,2,3...9 定位到對應數值的書簽位置
Ctrl + 左鍵單擊 在打開的文件標題上,彈出該文件路徑
Ctrl + 游標定位 按 Ctrl 不要松開,會顯示游標所在的類信息摘要
Ctrl + 左方向鍵 游標跳轉到當前單詞 / 中文句的左側開頭位置
Ctrl + 右方向鍵 游標跳轉到當前單詞 / 中文句的右側開頭位置
Ctrl + 前方向鍵 等效於滑鼠滾輪向前效果
Ctrl + 後方向鍵 等效於滑鼠滾輪向後效果
Alt
快捷鍵 介紹
Alt + ` 顯示版本控制常用操作菜單彈出層
Alt + Q 彈出一個提示,顯示當前類的聲明 / 上下文信息
Alt + F1 顯示當前文件選擇目標彈出層,彈出層中有很多目標可以進行選擇
Alt + F2 對於前面頁面,顯示各類瀏覽器打開目標選擇彈出層
Alt + F3 選中文本,逐個往下查找相同文本,並高亮顯示
Alt + F7 查找游標所在的方法 / 變數 / 類被調用的地方
Alt + F8 在 Debug 的狀態下,選中對象,彈出可輸入計算表達式調試框,查看該輸入內容的調試結果
Alt + Home 定位 / 顯示到當前文件的 Navigation Bar
Alt + Enter IntelliJ IDEA 根據游標所在問題,提供快速修復選擇,游標放在的位置不同提示的結果也不同 (必備)
Alt + Insert 代碼自動生成,如生成對象的 set / get 方法,構造函數,toString() 等
Alt + 左方向鍵 按左方向切換當前已打開的文件視圖
Alt + 右方向鍵 按右方向切換當前已打開的文件視圖
Alt + 前方向鍵 當前游標跳轉到當前文件的前一個方法名位置
Alt + 後方向鍵 當前游標跳轉到當前文件的後一個方法名位置
Alt + 1,2,3...9 顯示對應數值的選項卡,其中 1 是 Project 用得最多
Shift
快捷鍵 介紹
Shift + F1 如果有外部文檔可以連接外部文檔
Shift + F2 跳轉到上一個高亮錯誤 或 警告位置
Shift + F3 在查找模式下,查找匹配上一個
Shift + F4 對當前打開的文件,使用新Windows窗口打開,舊窗口保留
Shift + F6 對文件 / 文件夾 重命名
Shift + F7 在 Debug 模式下,智能步入。斷點所在行上有多個方法調用,會彈出進入哪個方法
Shift + F8 在 Debug 模式下,跳出,表現出來的效果跟 F9 一樣
Shift + F9 等效於點擊工具欄的 Debug 按鈕
Shift + F10 等效於點擊工具欄的 Run 按鈕
Shift + F11 彈出書簽顯示層
Shift + Tab 取消縮進
Shift + ESC 隱藏當前 或 最後一個激活的工具窗口
Shift + End 選中游標到當前行尾位置
Shift + Home 選中游標到當前行頭位置
Shift + Enter 開始新一行。游標所在行下空出一行,游標定位到新行位置
Shift + 左鍵單擊 在打開的文件名上按此快捷鍵,可以關閉當前打開文件
Shift + 滾輪前後滾動 當前文件的橫向滾動軸滾動
Ctrl + Alt
快捷鍵 介紹
Ctrl + Alt + L 格式化代碼,可以對當前文件和整個包目錄使用 (必備)
Ctrl + Alt + O 優化導入的類,可以對當前文件和整個包目錄使用 (必備)
Ctrl + Alt + I 游標所在行 或 選中部分進行自動代碼縮進,有點類似格式化
Ctrl + Alt + T 對選中的代碼彈出環繞選項彈出層
Ctrl + Alt + J 彈出模板選擇窗口,將選定的代碼加入動態模板中
Ctrl + Alt + H 調用層次
Ctrl + Alt + B 在某個調用的方法名上使用會跳到具體的實現處,可以跳過介面
Ctrl + Alt + V 快速引進變數
Ctrl + Alt + Y 同步、刷新
Ctrl + Alt + S 打開 IntelliJ IDEA 系統設置
Ctrl + Alt + F7 顯示使用的地方。尋找被該類或是變數被調用的地方,用彈出框的方式找出來
Ctrl + Alt + F11 切換全屏模式
Ctrl + Alt + Enter 游標所在行上空出一行,游標定位到新行
Ctrl + Alt + Home 彈出跟當前文件有關聯的文件彈出層
Ctrl + Alt + Space 類名自動完成
Ctrl + Alt + 左方向鍵 退回到上一個操作的地方 (必備)
Ctrl + Alt + 右方向鍵 前進到上一個操作的地方 (必備)
Ctrl + Alt + 前方向鍵 在查找模式下,跳到上個查找的文件
Ctrl + Alt + 後方向鍵 在查找模式下,跳到下個查找的文件
Ctrl + Shift
快捷鍵 介紹
Ctrl + Shift + F 根據輸入內容查找整個項目 或 指定目錄內文件 (必備)
Ctrl + Shift + R 根據輸入內容替換對應內容,范圍為整個項目 或 指定目錄內文件 (必備)
Ctrl + Shift + J 自動將下一行合並到當前行末尾 (必備)
Ctrl + Shift + Z 取消撤銷 (必備)
Ctrl + Shift + W 遞進式取消選擇代碼塊。可選中游標所在的單詞或段落,連續按會在原有選中的基礎上再擴展取消選中范圍 (必
備)
Ctrl + Shift + N 通過文件名定位 / 打開文件 / 目錄,打開目錄需要在輸入的內容後面多加一個正斜杠 (必備)
Ctrl + Shift + U 對選中的代碼進行大 / 小寫輪流轉換 (必備)
Ctrl + Shift + T 對當前類生成單元測試類,如果已經存在的單元測試類則可以進行選擇
Ctrl + Shift + C 復制當前文件磁碟路徑到剪貼板
Ctrl + Shift + V 彈出緩存的最近拷貝的內容管理器彈出層
Ctrl + Shift + E 顯示最近修改的文件列表的彈出層
Ctrl + Shift + H 顯示方法層次結構
Ctrl + Shift + B 跳轉到類型聲明處
Ctrl + Shift + I 快速查看游標所在的方法 或 類的定義
Ctrl + Shift + A 查找動作 / 設置
Ctrl + Shift + / 代碼塊注釋 (必備)
Ctrl + Shift + [ 選中從游標所在位置到它的頂部中括弧位置
Ctrl + Shift + ] 選中從游標所在位置到它的底部中括弧位置
Ctrl + Shift + + 展開所有代碼
Ctrl + Shift + - 折疊所有代碼
Ctrl + Shift + F7 高亮顯示所有該選中文本,按Esc高亮消失
Ctrl + Shift + F8 在 Debug 模式下,指定斷點進入條件
Ctrl + Shift + F9 編譯選中的文件 / 包 / Mole
Ctrl + Shift + F12 編輯器最大化
Ctrl + Shift + Space 智能代碼提示
Ctrl + Shift + Enter 自動結束代碼,行末自動添加分號 (必備)
Ctrl + Shift + Backspace 退回到上次修改的地方
Ctrl + Shift + 1,2,3...9 快速添加指定數值的書簽
Ctrl + Shift + 左方向鍵 在代碼文件上,游標跳轉到當前單詞 / 中文句的左側開頭位置,同時選中該單詞 / 中文句
Ctrl + Shift + 右方向鍵 在代碼文件上,游標跳轉到當前單詞 / 中文句的右側開頭位置,同時選中該單詞 / 中文句
Ctrl + Shift + 左方向鍵 在游標焦點是在工具選項卡上,縮小選項卡區域
Ctrl + Shift + 右方向鍵 在游標焦點是在工具選項卡上,擴大選項卡區域
Ctrl + Shift + 前方向鍵 游標放在方法名上,將方法移動到上一個方法前面,調整方法排序
Ctrl + Shift + 後方向鍵 游標放在方法名上,將方法移動到下一個方法前面,調整方法排序
Alt + Shift
快捷鍵 介紹
Alt + Shift + N 選擇 / 添加 task
Alt + Shift + F 顯示添加到收藏夾彈出層 / 添加到收藏夾
Alt + Shift + C 查看最近操作項目的變化情況列表
Alt + Shift + I 查看項目當前文件
Alt + Shift + F7 在 Debug 模式下,下一步,進入當前方法體內,如果方法體還有方法,則會進入該內嵌的方法中,依此循環進入
Alt + Shift + F9 彈出 Debug 的可選擇菜單
Alt + Shift + F10 彈出 Run 的可選擇菜單
Alt + Shift + 左鍵雙擊 選擇被雙擊的單詞 / 中文句,按住不放,可以同時選擇其他單詞 / 中文句
Alt + Shift + 前方向鍵 移動游標所在行向上移動
Alt + Shift + 後方向鍵 移動游標所在行向下移動
Ctrl + Shift + Alt
快捷鍵 介紹
Ctrl + Shift + Alt + V 無格式黏貼
Ctrl + Shift + Alt + N 前往指定的變數 / 方法
Ctrl + Shift + Alt + S 打開當前項目設置
Ctrl + Shift + Alt + C 復制參考信息
其他
快捷鍵 介紹
F2 跳轉到下一個高亮錯誤 或 警告位置 (必備)
F3 在查找模式下,定位到下一個匹配處
F4 編輯源
F7 在 Debug 模式下,進入下一步,如果當前行斷點是一個方法,則進入當前方法體內,如果該方法體還有方法,則不會進入該內嵌的
方法中
F8 在 Debug 模式下,進入下一步,如果當前行斷點是一個方法,則不進入當前方法體內
F9 在 Debug 模式下,恢復程序運行,但是如果該斷點下面代碼還有斷點則停在下一個斷點上
F11 添加書簽
F12 回到前一個工具窗口
Tab 縮進
ESC 從工具窗口進入代碼文件窗口
連按兩次Shift 彈出 Search Everywhere 彈出層
⑵ Sublime Text,php代碼格式化插件codeformatter 設置PHP代碼格式時報錯 怎麼處理
{
"codeformatter_debug": false,
"codeformatter_php_options":
{
"syntaxes": "php", // Syntax names which must process PHP formatter
"php_path": "這里改成你php的路徑", // Path for PHP executable, e.g. "/usr/lib/php" or "C:/Program Files/PHP/php.exe". If empty, uses command "php" from system environments
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"php55_compat": false, // PHP 5.5 compatible mode
"psr1": false, // Activate PSR1 style
"psr1_naming": false, // Activate PSR1 style - Section 3 and 4.3 - Class and method names case
"psr2": true, // Activate PSR2 style
"indent_with_space": 4, // Use spaces instead of tabs for indentation
"enable_auto_align": true, // Enable auto align of = and =>
"visibility_order": true, // Fixes visibility order for method in classes - PSR-2 4.2
"smart_linebreak_after_curly": true, // Convert multistatement blocks into multiline blocks
// Enable specific transformations. Example: ["ConvertOpenTagWithEcho", "PrettyPrintDocBlocks"]
// You can list all available transformations from command palette: CodeFormatter: Show PHP Transformations
"passes": [],
// Disable specific transformations
"excludes": []
},
"codeformatter_js_options":
{
"syntaxes": "javascript,json", // Syntax names which must process JS formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 4, // indentation size
"indent_char": " ", // Indent character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"eol": "\n", // EOL symbol
"preserve_newlines": false, // whether existing line breaks should be preserved,
"max_preserve_newlines": 10, // maximum number of line breaks to be preserved in one chunk
"space_in_paren": false, // Add padding spaces within paren, ie. f( a, b )
"space_in_empty_paren": false, // Add padding spaces within paren if parent empty, ie. f( )
"e4x": false, // Pass E4X xml literals through untouched
"jslint_happy": false, // if true, then jslint-stricter mode is enforced. Example function () vs function()
"space_after_anon_function": false, // Space after anonimouse functions
"brace_style": "collapse", // "collapse" | "expand" | "end-expand". put braces on the same line as control statements (default), or put braces on own line (Allman / ANSI style), or just put end braces on own line.
"keep_array_indentation": false, // keep array indentation.
"keep_function_indentation": false, // keep function indentation.
"eval_code": false, // eval code
"unescape_strings": false, // Decode printable characters encoded in xNN notation
"wrap_line_length": 0, // Wrap lines at next opportunity after N characters
"unindent_chained_methods": false, // Unindent chained method calls
"break_chained_methods": false, // Break chained method calls across subsequent lines
"end_with_newline": false, // Add new line at end of file
"comma_first": false, // Add comma first
"operator_position": "before-newline" // Operator position: before-newline, after-newline, preserve-newline
},
"codeformatter_css_options":
{
"syntaxes": "css,less", // Syntax names which must process CSS formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 4, // Indentation size
"indent_char": " ", // Indentation character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"selector_separator_newline": false, // Add new lines after selector separators
"end_with_newline": false, // Add new line of end in file
"newline_between_rules": false, // Add new line between rules
"space_around_combinator": false, // Space around combinator
"eol": "\n" // EOL symbol
},
"codeformatter_scss_options":
{
"syntaxes": "scss,sass", // Indentation size
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 4, // Indentation size
"indent_char": " ", // Indentation character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"selector_separator_newline": false, // Add new lines after selector separators
"end_with_newline": false, // Add new line of end in file
"newline_between_rules": false, // Add new line between rules
"space_around_combinator": false, // Space around combinator
"eol": "\n" // EOL symbol
},
"codeformatter_html_options":
{
"syntaxes": "html,blade,asp,xml", // Syntax names which must process HTML formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"formatter_version": "bs4", // Which formatter to use. Current options are "bs4" and "regexp". If an error occurs while loading the bs4 formatter, the regexp formatter will automatically be used
"indent_size": 4, // indentation size
"indent_char": " ", // Indentation character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"exception_on_tag_mismatch": false, // If the last closing tag is not at the same indentation level as the first opening tag, there's probably a tag mismatch in the file
"expand_javascript": false, // (Under construction) Expand JavaScript inside of <script> tags (also affects CSS purely by coincidence)
"expand_tags": false, // Expand tag attributes onto new lines
"minimum_attribute_count": 2, // Minimum number of attributes needed before tag attributes are expanded to new lines
"first_attribute_on_new_line": false, // Put all attributes on separate lines from the tag (only uses 1 indentation unit as opposed to lining all attributes up with the first)
"rece_empty_tags": false, // Put closing tags on same line as opening tag if there is no content between them
"rece_whole_word_tags": false, // Put closing tags on same line as opening tag if there is whole word between them
"custom_singletons": "" // Custom singleton tags for various template languages outside of the HTML5 spec
},
"codeformatter_python_options":
{
"syntaxes": "python", // Syntax names which must process Python formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 1, // indentation size
"indent_with_tabs": true, // Indent with tabs or spaces
"max_char": 80, // Width of output lines in characters.
"assignment": " = ", // This is how the assignment operator is to appear.
"function_param_assignment": "=", // This is how function-parameter assignment should appear.
"function_param_sep": ", ", // This is how function parameters are separated.
"list_sep": ", ", // This is how list items are separated.
"subscript_sep": "=", // This is how subscripts are separated.
"dict_colon": ": ", // This separates dictionary keys from values.
"slice_colon": ":", // this separates the start:end indices of slices.
"comment_prefix": "# ", // This is the sentinel that marks the beginning of a commentary string.
"shebang": "#!/usr/bin/env python", // Hashbang, a line-one comment naming the Python interpreter to Unix shells.
"boilerplate": "", // Standard code block (if any). This is inserted after the mole doc string on output.
"blank_line": "", // This is how a blank line is to appear (up to the newline character).
"keep_blank_lines": true, // If true, preserve one blank where blank(s) are encountered.
"add_blank_lines_around_comments": true, // If true, set off comment blocks with blanks.
"add_blank_line_after_doc_string": true, // If true, add blank line after doc strings.
"max_seps_func_def": 3, // Split lines containing longer function definitions.
"max_seps_func_ref": 5, // Split lines containing longer function calls.
"max_seps_series": 5, // Split lines containing longer lists or tuples.
"max_seps_dict": 3, // Split lines containing longer dictionary definitions.
"max_lines_before_split_lit": 2, // Split string literals containing more newline characters.
"left_margin": "", // This is how the left margin is to appear.
"normalize_doc_strings": false, // If true, normalize white space in doc strings.
"leftjust_doc_strings": false, // If true, left justify doc strings.
"wrap_doc_strings": false, // If true, wrap doc strings to max_char.
"leftjust_comments": false, // If true, left justify comments.
"wrap_comments": false, // If true, wrap comments to max_char.
"double_quoted_strings": false, // If true, use quotes instead of apostrophes for string literals.
"single_quoted_strings": false, // If true, use apostrophes instead of quotes for string literals.
"can_split_strings": false, // If true, longer strings are split at the max_char.
"doc_tab_replacement": "....", // This literal replaces tab characters in doc strings and comments.
// Optionally preserve unassigned constants so that code to be tidied
// may contain blocks of commented-out lines that have been no-op'ed
// with leading and trailing triple quotes. Python scripts may declare
// constants without assigning them to a variables, but CodeFormatter
// considers this wasteful and normally elides them.
"keep_unassigned_constants": false,
// Optionally omit parentheses around tuples, which are superfluous
// after all. Normal CodeFormatter behavior will be still to include them
// as a sort of tuple display analogous to list displays, dict
// displays, and yet-to-come set displays.
"parenthesize_tuple_display": true,
// When CodeFormatter splits longer lines because max_seps
// are exceeded, the statement normally is closed before the margin is
// restored. The closing bracket, brace, or parenthesis is placed at the
// current indent level. This looks ugly to "C" programmers. When
// java_style_list_dedent is True, the closing bracket, brace, or
// parenthesis is brought back left to the indent level of the enclosing
// statement.
"java_style_list_dedent": false
},
"codeformatter_vbscript_options":
{
"syntaxes": "vbscript", // Syntax names which must process VBScript formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 1, // indentation size
"indent_char": "\t", // Indentation character
"indent_with_tabs": true, // Indent with one tab (overrides indent_size and indent_char options)
"preserve_newlines": true, // Preserve existing line-breaks
"max_preserve_newlines": 10, // Maximum number of line-breaks to be preserved in one chunk
"opening_tags": "^(Function .*|Sub .*|If .* Then|For .*|Do While .*|Select Case.*)", // List of keywords which open a new block
"middle_tags": "^(Else|ElseIf .* Then|Case .*)$", // List of keywords which divide a block, but neither open or close the block
"closing_tags": "(End Function|End Sub|End If|Next|Loop|End Select)$" // List of keywords which close an open block
},
"codeformatter_coldfusion_options":
{
"syntaxes": "coldfusion,cfm,cfml", // Syntax names which must process Coldfusion Markup Language formatter
"format_on_save": false, // Format on save. Either a boolean (true/false) or a string regexp tested on filename. Example : "^((?!.min.|vendor).)*$"
"indent_size": 2, // indentation size
"indent_char": " ", // Indentation character
"indent_with_tabs": false, // Indent with one tab (overrides indent_size and indent_char options)
"exception_on_tag_mismatch": false, // If the last closing tag is not at the same indentation level as the first opening tag, there's probably a tag mismatch in the file
"expand_javascript": false, // (Under construction) Expand JavaScript inside of <script> tags (also affects CSS purely by coincidence)
"expand_tags": false, // Expand tag attributes onto new lines
"minimum_attribute_count": 2, // Minimum number of attributes needed before tag attributes are expanded to new lines
"first_attribute_on_new_line": false, // Put all attributes on separate lines from the tag (only uses 1 indentation unit as opposed to lining all attributes up with the first)
"rece_empty_tags": false, // Put closing tags on same line as opening tag if there is no content between them
"rece_whole_word_tags": false, // Put closing tags on same line as opening tag if there is whole word between them
"custom_singletons": "" // Custom singleton tags for various template languages outside of the HTML5 spec
}
}
⑶ phpstorm怎麼格式化代碼
phpstorm格式化代碼的快捷鍵:Ctrl + Alt + L
設置代碼樣式:File -> Settings -> Code Style ->PHP
(根據個人php代碼規范和個人喜好設置 PHP 等代碼的樣式結構。)
phpstorm可以設置:1、等號對齊;2、中括弧顯示方式;3、空格 顯示方式等...