Last active
December 17, 2015 12:39
-
-
Save eiel/5610839 to your computer and use it in GitHub Desktop.
マジコメを自動挿入したくないので、こういうの入れたのをふと思い出したので抜粋。
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
(defun ruby-mode-hook-init () | |
"encodingを自動挿入しないようにする" | |
(remove-hook 'before-save-hook 'ruby-mode-set-encoding) | |
(define-key ruby-mode-map "\C-ce" 'my-ruby-mode-set-encoding)) | |
(add-hook 'ruby-mode-hook 'ruby-mode-hook-init) | |
(defun my-ruby-mode-set-encoding () | |
"set-encoding ruby-mode" | |
(interactive) | |
(ruby-mode-set-encoding)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment