Created
October 24, 2012 05:50
-
-
Save dmj/3944275 to your computer and use it in GitHub Desktop.
Support umlauts in ace-jump (hacky defadvice)
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
(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)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment