branch: externals/company commit 3eaac91b27d5041a97a0cbae32bb5b03e361d230 Merge: 1887974 10b7f31 Author: Dmitry Gutov <dgu...@yandex.ru> Commit: GitHub <nore...@github.com>
Merge pull request #1221 from mohkale/abbrev-expand Make company-abbrev expand abbreviations after completion --- company-abbrev.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/company-abbrev.el b/company-abbrev.el index 16722dd..42c80a9 100644 --- a/company-abbrev.el +++ b/company-abbrev.el @@ -45,7 +45,8 @@ (delete "" (all-completions arg global-abbrev-table)) (delete "" (all-completions arg local-abbrev-table)))) (kind 'snippet) - (meta (abbrev-expansion arg)))) + (meta (abbrev-expansion arg)) + (post-completion (expand-abbrev)))) (provide 'company-abbrev) ;;; company-abbrev.el ends here