jellydn / quick-code-runner.nvim

A simple and efficient code runner for Neovim.
MIT License
22 stars 0 forks source link

Feature Request: Ability to run entire file #33

Closed al1-ce closed 5 months ago

al1-ce commented 5 months ago

Can be actually done with simple

{
    "<leader>cr",
    "gg0vGg$:QuickCodeRunner<CR>",
    desc = "Quick File Code Runner",
    mode = "n",
},

As a keybind, but in relation to #32 would be nice to have custom command for running code without using template (because template would already be there)

jellydn commented 5 months ago

Thanks @al1-ce for the suggestion. I would keep this simple so I've added your example as a tip.