Skip to content

Instantly share code, notes, and snippets.

@dmj
Created October 24, 2012 05:50
Show Gist options
  • Save dmj/3944275 to your computer and use it in GitHub Desktop.
Save dmj/3944275 to your computer and use it in GitHub Desktop.
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))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment