首頁  >  文章  >  開發工具  >  sublime怎麼輸入參數

sublime怎麼輸入參數

下次还敢
下次还敢原創
2024-04-03 06:15:18788瀏覽

Sublime 中輸入參數的方法

在Sublime 中輸入參數主要有兩種方法:

一、透過命令列參數

  1. 開啟終端機視窗。
  2. 導覽至 Sublime Text 安裝目錄。
  3. 執行以下命令,其中text.txt 是您要開啟的檔案路徑,-a 用於指定要開啟的檔案類型:
<code>subl text.txt -a txt</code>

二、透過專案設定

  1. 開啟Sublime Text。
  2. 選擇 "Project" 選單 > "Project Options"。
  3. 在"Settings - User" 檔案中新增以下JSON 程式碼:
<code class="json">{
  "cmd_line_args": ["-a", "txt", "text.txt"]
}</code>
  1. 其中-a 指定要開啟的檔案類型, txt 是檔案類型,text.txt 是檔案路徑。

注意:

  • 您也可以在命令列中傳遞多個參數:
<code>subl file1.txt -a type1 file2.txt -a type2</code>
  • 您可以在專案設定中覆寫命令列參數:
<code class="json">{
  "cmd_line_args": ["-a", "custom_type1", "custom_file1.txt"],
  "project_settings": {
    "file1.txt": {
      "cmd_line_args": ["-a", "custom_type2"]
    }
  }
}</code>

以上是sublime怎麼輸入參數的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn