--- Project run and debug keymaps. --- Provides `p` prefixed shortcuts that invoke the `:RunProject` --- and `:DebugProject` user commands defined in `project_commands.lua`. --- @module keymaps.project local keymap = vim.keymap --- Execute the project run command from `.nvim/project.lua`. keymap.set("n", "pr", ":RunProject", { desc = "Run Project" }) --- Execute the project debug command from `.nvim/project.lua`. keymap.set("n", "pd", ":DebugProject", { desc = "Debug Project" })