Skip to content

Instantly share code, notes, and snippets.

@danlamanna
Created November 1, 2014 21:56
Show Gist options
  • Save danlamanna/420966d9b649f404305b to your computer and use it in GitHub Desktop.
Save danlamanna/420966d9b649f404305b to your computer and use it in GitHub Desktop.
(setq hippie-expand-try-functions-list
'(yas/hippie-try-expand
php-complete-function))) ;; fails because php-complete-function takes 0 arguments
(setq hippie-expand-try-functions-list
'(yas/hippie-try-expand
(lambda(&rest args) (php-complete-function)))) ;; works
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment