Created
November 12, 2009 16:34
-
-
Save dotemacs/233038 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; nice drop down menu for Rinari: http://github.com/eschulte/rinari | |
(add-hook 'rinari-minor-mode-hook | |
'(lambda() | |
(easy-menu-define my-menu rinari-minor-mode-map "Rinari menu" | |
'("Rinari" | |
["Controller" rinari-find-controller] | |
["View" rinari-find-view] | |
["Model" rinari-find-model] | |
["Configuration" rinari-find-configuration] | |
["Environment" rinari-find-environment] | |
["Helper" rinari-find-helper] | |
["Migration" rinari-find-migration] | |
["Find file in project" rinari-find-file-in-project] | |
["Stylesheet" rinari-find-stylesheet] | |
["Plugin" rinari-find-plugin] | |
["Fixture" rinari-find-fixture] | |
["Worker" rinari-find-worker] | |
["Rake" rinari-rake] | |
["Test" rinari-test] | |
["-----------------" 'nil] | |
["Console" rinari-console] | |
["Sql" rinari-sql] | |
["Web server" rinari-web-server])))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment