-
Notifications
You must be signed in to change notification settings - Fork 62
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
Not Triggering within quotes #18
Comments
I've fixed it. |
Amazing, thank you! |
Just as a follow up I realized that I can not trigger path completion within quotes (single and double) if I start with Should I open a separate issue for this? 🤔 |
What do you mean? |
Ok thats weird 😅 Let me create a minimal config, not that this is another plugin interfering somehow |
I tried with the following minimal config: local install_path = vim.fn.stdpath('data') .. '/site/pack/packer/start/packer.nvim'
local is_packer_installed = vim.fn.isdirectory(install_path) == 1
if not is_packer_installed then
vim.api.nvim_command('!git clone https://github.com/wbthomason/packer.nvim ' .. install_path)
end
require('packer').startup(function(use)
use 'wbthomason/packer.nvim'
use 'hrsh7th/cmp-path'
use 'hrsh7th/nvim-cmp'
end)
require('cmp').setup {
sources = {
{ name = 'path' }
}
} Could that have something to do with the new |
Ah. Sorry. My local version was modified... |
I have the same issue :/ |
Hey! I recently started using this, and for some reason I've been unable to trigger path completion from within quotes (both single and double).
Is this intended behavior? If so, is there a way to enable path completion from within quotes?
The text was updated successfully, but these errors were encountered: