Created
February 19, 2013 13:44
-
-
Save avillafiorita/4986017 to your computer and use it in GitHub Desktop.
Emacs lisp commands for generating and inserting partials.
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
;;; Support for creation and insertion of partials - v 0.1 | |
;;; (c) 2013 Adolfo Villafiorita - Distributed under the MIT license | |
;;; Use it at your own risk. | |
(defun rails-region-to-partial (filename) | |
"Get current region and make it into a partial." | |
(interactive "FPartial file name: ") | |
(if (file-exists-p filename) | |
(message "File exists. It is a bad idea to overwrite it. Aborted.") | |
(progn | |
(write-region (region-beginning) (region-end) filename) | |
(delete-region (region-beginning) (region-end)) | |
(insert (rails-partial-string filename) "\n\n" )))) | |
(defun rails-insert-partial (filename) | |
"Ask for a filename (of a partial) and insert a partial directive at point." | |
(interactive "fPartial filename: ") | |
(insert (rails-partial-string filename))) | |
(defun rails-partial-string (filename) | |
"Return a partial command string." | |
(concat "<%= render :partial => \"" | |
(rails-filename-extract-partial filename) | |
"\", :locals => {} %>")) | |
(defun rails-filename-extract-partial (filename) | |
"Get a full filename and make it into a partial's name. | |
For instance: | |
- input: /a/b/c/_e.html.erb | |
- output: c/e" | |
(interactive) | |
(replace-regexp-in-string | |
"/_" | |
"/" | |
(file-name-sans-extension | |
(file-relative-name filename | |
(concat (file-name-as-directory filename) "../.."))))) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment