Hi,
I recently created an Emacs package for working
with pyramid projects and would like to get some more
feedback and suggestions.
I just copy the "Features" section from the readme here:
## Features
* Wrapper functions around the pyramid builtin p* scripts
- pyramid-routes
- pyramid-views
- pyramid-tweens
- pyramid-request
- pyramid-distreport
- pyramid-serve
* Easily locate and jump to all your "pyramid things"
- View definitions
- Templates
- Sqlalchemy models
- Console scripts
- Settings
* Function to create a new pyramid project from cookiecutter templates
* Run console scripts defined in your project
* Add yasnippets for common pyramid tasks
For more info check the repo at
https://github.com/dakra/pyramid.el
As it's not in melpa yet (PR waiting), you have to install it manually,
e.g.:
$ git clone g...@github.com:dakra/pyramid.el.git ~/.emacs.d/lib/pyramid
And then in your `init.el` add something like:
(add-to-list 'load-path "~/.emacs.d/lib/pyramid/")
(require 'pyramid)
(global-pyramid-mode)
of if you use use-package
(use-package pyramid :load-path "lib/pyramid"
:config
(global-pyramid-mode))
Feedback and feature requests very welcome.
Cheers,
Daniel