Revert "Do not enable company completion in Org Mode buffers by default"

This reverts commit 2622b048b6.

The main annoyance has been completion in org source blocks, and this has been
disabled now.  Additionally, `company-complete` only seems to work when
company-mode is enabled.  So let's enable it again and see how far we get.
This commit is contained in:
Daniel - 2020-12-30 11:40:59 +01:00
parent 2a02120a1d
commit 8d7302f38d
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 3 additions and 0 deletions

View File

@ -850,6 +850,9 @@
(emacs-lisp . t))))
:config (progn
;; Allow company completion in Org Mode buffers
(add-hook 'org-mode-hook 'company-mode)
;; Reset checkboxes if the RESET_CHECK_BOXES property is set
(add-hook 'org-after-todo-state-change-hook 'org-reset-checkbox-state-maybe)