sebastiencs / company-box

A company front-end with icons
561 stars 64 forks source link

company-box change my tab behavior in tooltip. #146

Open zw963 opened 3 years ago

zw963 commented 3 years ago

I use following code to try to use company like auto-complete.

(define-key company-active-map [tab] 'company-select-next-if-tooltip-visible-or-complete-selection)
(define-key company-active-map (kbd "TAB") 'company-select-next-if-tooltip-visible-or-complete-selection)

e.g. when press TAB in tooltip, instead of complete current candidate, it select next candidate.

But, after enable company-box, TAB's behavior change to complete current candidate.

What i expected:

I hope i can use company-box, but without change my previous TAB behavior. (select next candidate)

Thank you.