2013-04-02 9 views

cevap

37

Bu görüntü dosyasına:

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

etrafında hat 715 At bunu göreceksiniz:

"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 } }, 

I.E. ek satırları ekleyin

"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" } 
      ] 

Şimdi çalışmış 11 son projeleri

+3

var! Windows'da (kendim gibi) herhangi biri, dosyanın nerede olduğunu merak ediyorsa, şuradadır: \ AppData \ Roaming \ Sublime Text 2 \ Packages \ Default –

+0

Çalışır. Çok kötü bir hack, ve ayarlarda gerçek bir yapılandırma değil. Sublime güncellenirse, değiştirilmiş konfigürasyonun üzerine yazılabilir. – Gor

+4

ST3 için: bu tavsiyeyi http://stackoverflow.com/questions/20540492/how-to-increase-number-of-recent-files-in-sublime-text-3 adresindeki cevaplarla birleştirerek güzel bir şekilde çalışın – ptim