Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save uskanda/1424152 to your computer and use it in GitHub Desktop.
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)
(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