Skip to content

Instantly share code, notes, and snippets.

@aaroncampos
aaroncampos / gist:726376
Created December 3, 2010 00:34
YAsnippet / ruby-electric-mode workaround
;; Yasnippet workaround for ruby-electric-mode
;; See: http://code.google.com/p/yasnippet/issues/detail?id=71
(defun yas/advise-indent-function (function-symbol)
(eval `(defadvice ,function-symbol (around yas/try-expand-first activate)
,(format
"Try to expand a snippet before point, then call `%s' as usual"
function-symbol)
(let ((yas/fallback-behavior nil))
(unless (and (interactive-p)
(yas/expand))