https://github.com/myterminal/projectile-extras
A few extra functions for projectile
https://github.com/myterminal/projectile-extras
emacs projectile
Last synced: 8 months ago
JSON representation
A few extra functions for projectile
- Host: GitHub
- URL: https://github.com/myterminal/projectile-extras
- Owner: myTerminal
- License: gpl-3.0
- Created: 2017-09-29T00:16:51.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-10-14T23:37:24.000Z (over 4 years ago)
- Last Synced: 2025-03-06T23:27:28.213Z (over 1 year ago)
- Topics: emacs, projectile
- Language: Emacs Lisp
- Size: 22.5 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# projectile-extras
[](https://marmalade-repo.org/packages/emacs-daily-events)
[](https://www.gnu.org/licenses/gpl.html)
A few extra functions for projectile
You can use *projectile-extras* as a supplement to projectile for a few extra functions.
## Installation
### Manual
Save the file *projectile-extras.el* to disk and add the directory containing it to `load-path` using a command in your *.emacs* file like:
(add-to-list 'load-path "~/.emacs.d/")
The above line assumes that you've placed the file into the Emacs directory '.emacs.d'.
Start the package with:
(require 'projectile-extras)
Note: You must have [projectile](https://github.com/bbatsov/projectile) for *projectile-extras* to work as it is an extension to it.
### Marmalade
If you have Marmalade added as a repository to your Emacs, you can just install *projectile-extras* with
M-x package-install projectile-extras RET
## Usage
Currently *projectile-extras* provides the following functions:
- projectile-find-all-occurrences
Prompts for a text and lists all files in the current project containing it.
- projectile-find-all-references
Lists all files in the current project containing marked text.
## Dependencies
* [projectile](https://github.com/bbatsov/projectile)