This file contains hidden or 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
| #!/usr/bin/env ruby | |
| # This is a quick script to generate YASnippets from TextMate Snippets. | |
| # | |
| # I based the script off of a python script of a similar nature by | |
| # Jeff Wheeler: http://nokrev.com | |
| # http://code.nokrev.com/?p=snippet-copier.git;a=blob_plain;f=snippet_copier.py | |
| # | |
| # Usage | |
| # | |
| # Make sure you have the plist and the choice gem installed |
This file contains hidden or 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
| ;;============================================================ | |
| ;; flymake | |
| ;;============================================================ | |
| ;; flymake ruby support | |
| ;; thanks to Dmitry Galinsky - this was taken from emacs-rails | |
| (require 'flymake nil t) | |
| (defconst flymake-allowed-ruby-file-name-masks | |
| '(("\\.rb\\'" flymake-ruby-init) | |
| ("\\.rxml\\'" flymake-ruby-init) |
NewerOlder