mirror of
https://github.com/joaotavora/yasnippet.git
synced 2025-10-13 13:13:03 +00:00

setup.el, delete the # => snippet) * Tweaked some ruby snippets * Disabled bindings for some TextMate text-mode snippets
18 lines
437 B
Plaintext
18 lines
437 B
Plaintext
# -*- mode: snippet -*-
|
|
# key: begin
|
|
# contributor: Translated from TextMate Snippet
|
|
# name: begin … rescue … end
|
|
## binding: "C-c C-w"
|
|
# condition: (not (yas/ruby-in-comment-p))
|
|
# --
|
|
begin
|
|
`(or yas/selected-text
|
|
(and cua-mode
|
|
(prog1
|
|
(get-register ?0)
|
|
(set-register ?0 nil)))
|
|
(car kill-ring))`$3
|
|
rescue ${1:Exception}${2:$(if (string= yas/text "") "" " => ")}${2:e}
|
|
$0
|
|
end
|