Code Monkey home page Code Monkey logo

Comments (8)

kdheepak avatar kdheepak commented on July 30, 2024 2

This doesn't work for me but I guess the original issue is resolved, and we can close this issue. I'll comment on the other issue about the tab key issues that I'm having.

from nvim-cmp.

hrsh7th avatar hrsh7th commented on July 30, 2024

It is not a nvim-cmp's issue.

You should learn vim's key-mapping.

Your configuration is triggered by <Tab> but you send <Tab> again with remapping construction. It will cause infinite loop.

You should modify the return vim.fn.feedkeys(T("<Tab>")) with return vim.fn.feedkeys(T("<Tab>"), 'n')

from nvim-cmp.

kdheepak avatar kdheepak commented on July 30, 2024

Thanks for the quick reply! That solves the hanging issue!

But it doesn't solve the indent problem.

nvim-cmp-tab.mov

Related to this PR: #38

from nvim-cmp.

hrsh7th avatar hrsh7th commented on July 30, 2024

Hm... I don't use <Tab> mapping.
I will look,into,it tomorrow

from nvim-cmp.

kdheepak avatar kdheepak commented on July 30, 2024

Thanks! I appreciate it.

from nvim-cmp.

kdheepak avatar kdheepak commented on July 30, 2024

This worked in the past btw, when the configuration used a function callback with args that were core and fallback.

    ["<Tab>"] = cmp.mapping.mode({ "i", "s" }, function(core, fallback)
      if vim.fn.pumvisible() == 1 then
        vim.fn.feedkeys(T("<C-n>"), "n")
      elseif luasnip.expand_or_jumpable() then
        vim.fn.feedkeys(T("<Plug>luasnip-expand-or-jump"), "")
      elseif not check_backspace() then
        cmp.mapping.complete()(core, fallback)
      else
        fallback()
      end
    end),
    ["<S-Tab>"] = cmp.mapping.mode({ "i", "s" }, function(_, fallback)
      if vim.fn.pumvisible() == 1 then
        vim.fn.feedkeys(T("<C-p>"), "n")
      elseif luasnip.jumpable(-1) then
        vim.fn.feedkeys(T("<Plug>luasnip-jump-prev"), "")
      else
        fallback()
      end
    end),
  },

from nvim-cmp.

uga-rosa avatar uga-rosa commented on July 30, 2024

Will this work?
#21 (comment)

from nvim-cmp.

hrsh7th avatar hrsh7th commented on July 30, 2024

@kdheepak See the @uga-rosa 's suggestion.

from nvim-cmp.

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.