https://github.com/komodo/projects-scope
Komodo addon which adds a recent Projects scope to Commando (go to anything)
https://github.com/komodo/projects-scope
Last synced: 4 months ago
JSON representation
Komodo addon which adds a recent Projects scope to Commando (go to anything)
- Host: GitHub
- URL: https://github.com/komodo/projects-scope
- Owner: Komodo
- License: mit
- Created: 2015-07-06T23:43:22.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2017-09-07T20:52:08.000Z (almost 8 years ago)
- Last Synced: 2025-01-09T08:25:25.928Z (5 months ago)
- Language: JavaScript
- Size: 34.2 KB
- Stars: 3
- Watchers: 10
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

This adds a new search scope to Commando allowing you to easily access your
most recently used projects.Note by default Komodo only saves your 15 most recently used projects, to change
this number you can set the "mruProjectSize" preference to whataver value you
prefer.eg.
```
require("ko/prefs").setLong("mruProjectSize", 100);
```If you are a long time Komodo user you're likely still using the old default, which
was to only save the 5 last projects, so you would probably want to increase this.Building
========To build the Projects scope please refer to the documentation on building an extension:
http://community.activestate.com/forum/introduction-building-komodo-extension
Note that Komodo skins need to be built using the --unjarred flag, ie.
koext build --unjarred
This addon was specifically created to serve as an example for how to make your
own Commando scopes, so please feel free to copy and pick apart this code.