зеркало из https://github.com/github/ruby.git
ruby-additional.el: shorten here-doc markers
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60094 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
da4f041ea2
Коммит
487dfb9d22
|
@ -162,11 +162,11 @@ Emacs to Ruby."
|
|||
"Insert indented here document code block"
|
||||
(interactive "P")
|
||||
(let ((c (if arg "~" "-")))
|
||||
(insert "\"#{<<" c "\"begin\;\"}\\n#{<<" c "'end;'}\""))
|
||||
(insert "\"#{<<" c "\"{#\"}\\n#{<<" c "'};'}\""))
|
||||
(end-of-line)
|
||||
(if (eobp) (insert "\n") (forward-char))
|
||||
(indent-region (point)
|
||||
(progn (insert "begin;\n" "end;\n") (point)))
|
||||
(progn (insert "{#\n" "};\n") (point)))
|
||||
(beginning-of-line 0))
|
||||
(define-key ruby-mode-map "\C-cH" 'ruby-insert-heredoc-code-block)
|
||||
))
|
||||
|
|
Загрузка…
Ссылка в новой задаче