We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The text was updated successfully, but these errors were encountered:
cmp-lsp-rimels 不会改变 cmp 的候选项顺序,正常情况下 1. 会在 2. 之前,感觉问题可能出现在 cmp 的 sorting 设置。这块我也不太熟悉,你可以参考下面的配置:
1.
2.
-- cmp 會自己排序, 要配置裏把 sort_text 手動提前 local cmp = require 'cmp' local compare = require 'cmp.config.compare' cmp.setup { -- 其他设置 blabla -- ...... -- 设置排序顺序 sorting = { comparators = { compare.sort_text, compare.offset, compare.exact, compare.score, compare.recently_used, compare.kind, compare.length, compare.order, } }, -- 其他配置 blabla -- ...... }
对应的链接在 https://github.com/wlh320/rime-ls/blob/master/doc/nvim.md
Sorry, something went wrong.
感谢,我现在先把这个符号显示的功能直接在 rime 的配置中关掉了。
No branches or pull requests
The text was updated successfully, but these errors were encountered: