2013-04-02 11 views

答えて

37

このファイルを編集:周りのライン715で

~/Library/Application Support/Sublime Text 2/Packages/Default/Main.sublime-menu 

あなたがこのわかります

"caption": "Recent Projects", 
      "mnemonic": "R", 
      "children": 
      [ 
       { "command": "open_recent_project", "args": {"index": 0 } }, 
       { "command": "open_recent_project", "args": {"index": 1 } }, 
       { "command": "open_recent_project", "args": {"index": 2 } }, 
       { "command": "open_recent_project", "args": {"index": 3 } }, 
       { "command": "open_recent_project", "args": {"index": 4 } }, 
       { "command": "open_recent_project", "args": {"index": 5 } }, 
       { "command": "open_recent_project", "args": {"index": 6 } }, 
       { "command": "open_recent_project", "args": {"index": 7 } }, 
       { "command": "open_recent_project", "args": {"index": 8 } }, 
       { "command": "open_recent_project", "args": {"index": 9 } }, 
       { "caption": "-" }, 
       { "command": "clear_recent_projects", "caption": "Clear Items" } 
      ] 

{ "command": "open_recent_project", "args": {"index": n } }, 

すなわち、追加の行を追加します。

"caption": "Recent Projects", 
      "mnemonic": "R", 
      "children": 
      [ 
       { "command": "open_recent_project", "args": {"index": 0 } }, 
       { "command": "open_recent_project", "args": {"index": 1 } }, 
       { "command": "open_recent_project", "args": {"index": 2 } }, 
       { "command": "open_recent_project", "args": {"index": 3 } }, 
       { "command": "open_recent_project", "args": {"index": 4 } }, 
       { "command": "open_recent_project", "args": {"index": 5 } }, 
       { "command": "open_recent_project", "args": {"index": 6 } }, 
       { "command": "open_recent_project", "args": {"index": 7 } }, 
       { "command": "open_recent_project", "args": {"index": 8 } }, 
       { "command": "open_recent_project", "args": {"index": 9 } }, 
       { "command": "open_recent_project", "args": {"index": 10 } }, 
       { "caption": "-" }, 
       { "command": "clear_recent_projects", "caption": "Clear Items" } 
      ] 

今、あなたが働いていた11件の最近のプロジェクト

+3

を持っています! Windows上の誰かが(その人のように)そのファイルがどこにあるのか疑問に思うなら、\ AppData \ Roaming \ Sublime Text 2 \ Packages \ Default –

+0

です。あまりにもそれはハックであり、設定の実際の設定ではありません。 Sublimeが更新されると、変更された構成が上書きされる可能性があります。 – Gor

+4

ST3の場合:このアドバイスとhttp://stackoverflow.com/questions/20540492/how-to-increase-number-of-recent-files-in-sublime-text-3の回答を組み合わせて – ptim

関連する問題