Sublime Forum

Easier Way to Open Project

#1

Sublime’s projects implementation works beautifully so I use project a great deal. What I would really like is the ability to open projects as easily as I can open files within a project. Essentially the ability to open a file selector that lists all recent projects. The Recent Projects List just feels so clunky compared to finding files within a project.

0 Likes

#2

Like the QuickMRU plugin?

For projects instead of files…

I’ll make one tomorrow if that’s what you’re looking for, it’ll take 10 minutes.

0 Likes

#3

Yes, exactly like that. I’d overlooked the QuickMRU plugin.

Thanks!

0 Likes

#4
0 Likes

#5

Done, look for “ProjectMRU” in the repo.

0 Likes

#6

Is it possible to increase the number of projects in the ProjectMRU?

0 Likes

#7

Can you pls point me to this repo?

0 Likes

#8

sublime-text-community-packages. … index.html

The package in question is here:
sublime-text-community-packages. … ctMRU.html

0 Likes

#9

Look for this at the end of ProjectMRU.py, in the run function:

files = sorted( set(mostFrequent:10] + latest:10]), key=lambda x:db[x]'date'], reverse=True)

Change 10 to whatever you want (if you want more than 50, then you need to modify the trimDB function in the same manner as well.)

0 Likes

#10

Perfect, thanks!!

0 Likes