A lightweight Neovim plugin that provides a floating dialog for setting the makeprg.
- Floating dialog to edit
makeprgwithout leaving the editor - Supports both global and buffer-local
makeprgsettings - Pre-fills with current value for quick editing
| Command | Description |
|---|---|
:Rake |
Set global makeprg |
:Rake local |
Set buffer-local makeprg |
Dialog keybindings:
<CR>- Confirm and apply<Esc>- Cancel
vim.keymap.set("n", "<leader>mr", "<cmd>Rake<cr>", { desc = "Set makeprg" })
vim.keymap.set("n", "<leader>ml", "<cmd>Rake local<cr>", { desc = "Set makeprg (local)" })MIT