Add NuGet upgrade shortcut in neovim (#66)

This commit is contained in:
Patrick Stevens
2024-07-23 17:27:55 +01:00
committed by GitHub
parent 43c7842fac
commit 19e8024a13
7 changed files with 594 additions and 32 deletions

View File

@@ -56,11 +56,11 @@ end
do
local whichkey = require("which-key")
whichkey.register({
['pt'] = {
"Run Python tests",
f = { RunPythonTestsInFile, "Run Python tests in the current file" },
a = { RunAllPythonTests, "Run all Python tests" },
c = { RunPythonTestAtCursor, "Run the Python test under the cursor" },
["pt"] = {
"Run Python tests",
f = { RunPythonTestsInFile, "Run Python tests in the current file" },
a = { RunAllPythonTests, "Run all Python tests" },
c = { RunPythonTestAtCursor, "Run the Python test under the cursor" },
},
}, { prefix = vim.api.nvim_get_var("maplocalleader") })
end