-
-
Notifications
You must be signed in to change notification settings - Fork 38
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
[bug]: the pick-focus and pick-close binds don't work #204
Comments
Could you please provide a minimal init file that can reproduce this issue, and some info about your Neovim version? I can't reproduce this, the binds work fine for me. |
sure, i'll try doing that later, maybe tomorrow or in two days. i was testing with neovim v0.10.0 tho, so that might be why |
I'm on v0.10.0 as well. I'm not using the plug mappings though, maybe that's the difference. I'll look into it a bit more. No rush, I'm super busy with work rn so I don't have a ton of time for open-source rn. I'll try to get to this ASAP once you have some more info though :) |
yeah sure np. just fyi i tried the same thing with lua and it had the same result |
Hmm alright, that's good to know. Thanks! |
local lazypath = vim.fn.stdpath 'data' .. '/lazy/lazy.nvim'
if not vim.loop.fs_stat(lazypath) then
local lazyrepo = 'https://github.com/folke/lazy.nvim.git'
vim.fn.system { 'git', 'clone', '--filter=blob:none', '--branch=stable', lazyrepo, lazypath }
end ---@diagnostic disable-next-line: undefined-field
vim.opt.rtp:prepend(lazypath)
require('lazy').setup({
{
"willothy/nvim-cokeline",
dependencies = {
"nvim-lua/plenary.nvim", -- Required for v0.4.0+
"nvim-tree/nvim-web-devicons", -- If you want devicons
"stevearc/resession.nvim" -- Optional, for persistent history
},
config = true
},
{ "nvim-telescope/telescope.nvim" },
})
vim.api.nvim_set_keymap('n', '<space><space>', ':Telescope find_files<CR>', { noremap = true, silent = true }) here's a minimal config u can run with |
Thanks! I'll look into this as soon as I can. |
as the title says, these binds don't work (after i run that command, nothing happens). for comparison they work fine in nvim-bufferline:
The text was updated successfully, but these errors were encountered: