Closed mawkler closed 2 months ago
Hey @mawkler , I believe I've fixed it! Turns out I forgot to enable eyeliner keybinds on setup, it was only enabling keybinds on the BufEnter autocommand. It's fixed in the latest commit 4e2b4bde4edcfbadee1d0a9245c2bebfc58b6003 . latest commit 587c096de0cc3e97ae0993b5b7b9da9b64f72cd4 .
Let me know if it works!
Nice catch! It seems to work for me. Thank you! 🙂
Following up the discussion in https://github.com/jinh0/eyeliner.nvim/issues/46. Here's a minimal config with the lazy loading issue:
Click to expand
```lua local lazypath = vim.fn.stdpath('data') .. '/lazy/lazy.nvim' if not vim.loop.fs_stat(lazypath) then vim.fn.system({ 'git', 'clone', '--filter=blob:none', 'https://github.com/folke/lazy.nvim.git', '--branch=stable', -- latest stable release lazypath, }) end vim.opt.rtp:prepend(lazypath) vim.keymap.set('n', 'The key mappings don't get created after lazy loading on
t
/T
/f
/F
. I seeem to have to switch to another buffer and back for the key mappings to appear.