Skip to content

Instantly share code, notes, and snippets.

View m1cm1c's full-sized avatar

m1cm1c

View GitHub Profile
@dmj
dmj / gist:3944275
Created October 24, 2012 05:50
Support umlauts in ace-jump (hacky defadvice)
(defadvice ace-jump-char-category (around adv-ace-jump-support-umlauts activate)
(unless (= (char-syntax (ad-get-arg 0)) ?w)
ad-do-it)
(setq ad-return-value 'alpha))