GithubHelp home page GithubHelp logo

Comments (1)

AlejandroSuero avatar AlejandroSuero commented on June 26, 2024

I don't know if this is related to this issue, but it fits the title I guess, but this issue from supermaven-nvim seems to have a problem with built-in lsp completion.

From what I've been testing (videos in the issue) the main difference with nvim-cmp is:

  • nvim-cmp when completing triggers:
# nvim-cmp
InsertCharPre
TextChangedI
InsertCharPre
TextChangedI
InsertCharPre
TextChangedI
InsertCharPre
InsertCharPre
InsertCharPre
InsertCharPre
InsertCharPre
InsertCharPre
InsertCharPre
TextChangedI
  • built-in when completing triggers:
# vim.lsp.completion
InsertCharPre
TextChangedI
CompleteDone
CompleteChanged
TextChangedP
CompleteChanged
TextChangedP
CompleteChanged
TextChangedP
CompleteDone

Logs taken after video demo

built-in_vs_nvim-cmp.mp4

Logged out like:

  vim.api.nvim_create_autocmd({ "InsertChange", "InsertCharPre", "CompleteDone", "CompleteChanged", "TextChangedP", "TextChangedI", "TextChanged" }, {
    pattern = "*",
    group = M.augroup, -- ("supermaven", { clear = true }) for reference
    callback = function(event)
      if string.match(event.event, "Complete") then
        print(event.event)
      end
      if string.match(event.event, "Insert") then
        print(event.event)
      end
      if string.match(event.event, "TextChanged") then
        print(event.event)
      end
    end,
  })

And when writing with vim.lsp.completion triggered when using <C-x><C-o> it will behave the same but disables extmark for some reason, thus not getting the "ghost text" from the plugin. Same as you can see in the video if cycling through built-in completion.

Note

Tested both in v0.10.0 and nightly in MacOS 14.5 (23F79) in a tmux session in wezterm.

from neovim.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.