File tree 2 files changed +6
-7
lines changed
2 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 11
11
12
12
; ; Company -------------------------------------------------------------------
13
13
14
+ (defvar-local auto-completion-front-end 'company
15
+ " Which auto-completion front end to use." )
16
+
14
17
(defvar auto-completion-return-key-behavior 'complete
15
18
" What the RET key should do when auto-completion menu is active.
16
19
Possible values are `complete' or `nil' ." )
Original file line number Diff line number Diff line change 11
11
12
12
(spacemacs|add-toggle auto-completion
13
13
:status
14
- (if (boundp 'auto-completion-front-end )
15
- (if (eq 'company auto-completion-front-end)
16
- company-mode
17
- auto-complete-mode)
18
- ; ; default completion hardcoded to be company for now
19
- (setq auto-completion-front-end 'company )
20
- nil )
14
+ (if (eq 'company auto-completion-front-end)
15
+ (bound-and-true-p company-mode)
16
+ (bound-and-true-p auto-complete-mode))
21
17
:on
22
18
(progn
23
19
(if (eq 'company auto-completion-front-end)
You can’t perform that action at this time.
0 commit comments