Rename some vim bindings

This commit is contained in:
Smaug123
2024-04-05 22:16:39 +01:00
parent d867348640
commit bf1dfe3d6d
3 changed files with 4 additions and 12 deletions

View File

@@ -85,10 +85,8 @@ end
do
local whichkey = require("which-key")
whichkey.register({
p = {
name = "Python-related commands",
v = {
name = "Virtual environment-related commands",
['pv'] = {
name = "Python virtual environment-related commands",
c = { CreateVenv, "Create virtual environment" },
l = { SelectVenv, "Load virtual environment" },
o = {
@@ -97,7 +95,6 @@ do
end,
"Choose (override) new virtual environment",
},
},
},
}, { prefix = vim.api.nvim_get_var("maplocalleader") })
end