Coder Social home page Coder Social logo

Comments (10)

saadparwaiz1 avatar saadparwaiz1 commented on June 12, 2024

can't reproduce with this minimum config.

vim.cmd [[packadd packer.nvim]]

require('packer').startup(function()
	use 'wbthomason/packer.nvim'
	use {
		'L3MON4D3/LuaSnip',
		requires = {
			'rafamadriz/friendly-snippets'
		}
	}
	use {
		'hrsh7th/nvim-cmp',
		requires = {
			'hrsh7th/cmp-nvim-lsp',
			'saadparwaiz1/cmp_luasnip'
		}
	}

	use {
		'neovim/nvim-lspconfig'
	}
end)

require('luasnip').config.setup({})
require('luasnip.loaders.from_vscode').load()


local cmp = require('cmp')
cmp.setup {
	snippet = {
		expand = function(args)
			require'luasnip'.lsp_expand(args.body)
		end
	},
	sources = {
		{ name = 'luasnip' },
		{ name = 'nvim_lsp'},
	},
	mapping = {
	  ['<C-d>'] = cmp.mapping.scroll_docs(-4),
	  ['<C-f>'] = cmp.mapping.scroll_docs(4),
	  ['<C-Space>'] = cmp.mapping.complete(),
	  ['<C-e>'] = cmp.mapping.close(),
	  ['<CR>'] = cmp.mapping.confirm({
	    behavior = cmp.ConfirmBehavior.Replace,
	    select = true,
	  })
	}
}

local capabilities = vim.lsp.protocol.make_client_capabilities()
capabilities = require('cmp_nvim_lsp').update_capabilities(capabilities)

require'lspconfig'.clangd.setup {
  capabilities = capabilities,
}

from cmp_luasnip.

uga-rosa avatar uga-rosa commented on June 12, 2024

Now that I know which plugin is causing the problem, I close this issue.
I thought it would reproduce even with that setting, but there was one that I had manually added locally hahaha

from cmp_luasnip.

ram02z avatar ram02z commented on June 12, 2024

Now that I know which plugin is causing the problem, I close this issue. I thought it would reproduce even with that setting, but there was one that I had manually added locally hahaha

@uga-rosa I am currently having the same issue, can you tell me what plugin was causing this issue?

from cmp_luasnip.

uga-rosa avatar uga-rosa commented on June 12, 2024

@ram02z That's a plugin I made myself.
The problem with this plugin should have been solved by PR the other day, but... I wonder why.

from cmp_luasnip.

saadparwaiz1 avatar saadparwaiz1 commented on June 12, 2024

@ram02z can you reproduce the issue with the above minimum config?

from cmp_luasnip.

ram02z avatar ram02z commented on June 12, 2024

@ram02z can you reproduce the issue with the above minimum config?

Not sure how to run that config. I also use packer and it seems to conflict when I run with nvim -u min.lua or nvim -u min.lua --no-plugin

from cmp_luasnip.

gegoune avatar gegoune commented on June 12, 2024

Try with --clean and -u.

from cmp_luasnip.

ram02z avatar ram02z commented on June 12, 2024

Try with --clean and -u.

Doesn't work unfortunately.

from cmp_luasnip.

uga-rosa avatar uga-rosa commented on June 12, 2024

Isn't there a plugin left under ~/.local/share/nvim/site/pack/packer/?
You can use package_root in packer.init.
It's quicker to move it once.

from cmp_luasnip.

ram02z avatar ram02z commented on June 12, 2024

I managed to fix it by not lazy loading nvim-cmp.

from cmp_luasnip.

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.