-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed breaking changes after company-mode update #168
Conversation
- company-show-numbers changed to company-quick-access - company-show-numbers-function to company-quick-access-hint-function
ping @sebastiencs ... It's a critical fix.Please merge it ASAP. Thanks! |
Merged, thanks @CsBigDataHub @seagle0128 |
Thanks @sebastiencs . Now the numbering is off, when show-numbers is enabled. I suspect these line is the culprit - Line 293 in c8a8671
or Line 411 in c8a8671
|
Try removing |
@dgutov thanks @sebastiencs please push it whenever you can. |
Another thing is company-box numbers should respect |
@@ -62,7 +62,7 @@ | |||
|
|||
(require 'subr-x) | |||
(require 'dash) | |||
(require 'dash-functional) | |||
(require 'dash) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR, I guess I did not realize dash
version in here as it is a dependency for multiple packages and it's already updated to latest version. Probably @sebastiencs can find time to merge your PR's soon.
Dash 2.18.0 subsumed dash-functional, and company-box no longer loads dash-functional, but it still lists old versions of dash and dash-functional as dependencies, which can cause issues. While at it, require the latest version 2.19.0 of Dash. Re: sebastiencs#152, sebastiencs#153, sebastiencs#156, sebastiencs#157, sebastiencs#161, sebastiencs#168, sebastiencs#170.
fixes #167
company-mode updated functions
company-show-numbers
tocompany-quick-access
company-show-numbers-function
tocompany-quick-access-hint-function