Created
December 2, 2011 17:47
-
-
Save uskanda/1424152 to your computer and use it in GitHub Desktop.
[Emacs]Advice for yasnippet(dropdown-list) to fix display corruption when using col-highlight.el(vline.el)
This file contains 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 dropdown-list (around col-highlight-disable-when-execute-dropdown) | |
(progn (toggle-highlight-column-when-idle 0) | |
ad-do-it | |
(toggle-highlight-column-when-idle 1))) | |
(ad-activate 'dropdown-list) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment