mistricky / codesnap.nvim

📸 Snapshot plugin with rich features that can make pretty code snapshots for Neovim
MIT License
485 stars 16 forks source link

No executable codelens found at current line #109

Open idelice opened 5 days ago

idelice commented 5 days ago

Whenever i select lines of code to snap with the keybinding set, i get that error in the title.

However, if I select the lines of code to snap using the command instead: <,'>CodeSnap - it works fine.

Config

return {
  "mistricky/codesnap.nvim",
  build = "make",
  keys = {
    { "<leader>cc", "<cmd>CodeSnap<cr>", mode = "x", desc = "Codesnap" },
  },
  opts = {
    has_breadcrumbs = true,
    bg_theme = "bamboo",
  },
}

What am I doing wrong with the keybinding?