Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sliim/helm-project-persist
Helm integration for project-persist
https://github.com/sliim/helm-project-persist
emacs emacs-lisp helm project-management
Last synced: 2 months ago
JSON representation
Helm integration for project-persist
- Host: GitHub
- URL: https://github.com/sliim/helm-project-persist
- Owner: Sliim
- License: gpl-3.0
- Created: 2013-06-01T14:19:38.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-10T15:43:15.000Z (about 9 years ago)
- Last Synced: 2023-03-25T09:32:26.388Z (almost 2 years ago)
- Topics: emacs, emacs-lisp, helm, project-management
- Language: Emacs Lisp
- Size: 15.6 KB
- Stars: 3
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: COPYING
Awesome Lists containing this project
README
* Helm project-persist
This package provides capabilities to search and open project from project-persist with helm library.
[[http://melpa.org/#/helm-project-persist][file:http://melpa.org/packages/helm-project-persist-badge.svg]]
[[http://stable.melpa.org/#/helm-project-persist][file:http://stable.melpa.org/packages/helm-project-persist-badge.svg]]** Requirements
- Helm (https://github.com/emacs-helm/helm)
- project-persist (https://github.com/rdallasgray/project-persist)
** Installation
*** From github
Clone this repository and copy helm-project-persist.el in your ~load-path~And add this in your configuration:
#+BEGIN_SRC elisp
(require 'helm-project-persist)
#+END_SRC
** Usage
Type M-x ~helm-project-persist~ to show project list.You can bind it to a keybinding like this:
#+BEGIN_SRC elisp
(global-set-key (kbd "C-c P h") 'helm-project-persist)
#+END_SRC