updated to released template
This commit is contained in:
parent
d8f5eb695e
commit
fd59faa8d0
@ -47,14 +47,14 @@ return {
|
|||||||
-- second key is the lefthand side of the map
|
-- second key is the lefthand side of the map
|
||||||
|
|
||||||
-- navigate buffer tabs with `H` and `L`
|
-- navigate buffer tabs with `H` and `L`
|
||||||
-- L = {
|
L = {
|
||||||
-- function() require("astrocore.buffer").nav(vim.v.count > 0 and vim.v.count or 1) end,
|
function() require("astrocore.buffer").nav(vim.v.count > 0 and vim.v.count or 1) end,
|
||||||
-- desc = "Next buffer",
|
desc = "Next buffer",
|
||||||
-- },
|
},
|
||||||
-- H = {
|
H = {
|
||||||
-- function() require("astrocore.buffer").nav(-(vim.v.count > 0 and vim.v.count or 1)) end,
|
function() require("astrocore.buffer").nav(-(vim.v.count > 0 and vim.v.count or 1)) end,
|
||||||
-- desc = "Previous buffer",
|
desc = "Previous buffer",
|
||||||
-- },
|
},
|
||||||
|
|
||||||
-- mappings seen under group name "Buffer"
|
-- mappings seen under group name "Buffer"
|
||||||
["<Leader>bD"] = {
|
["<Leader>bD"] = {
|
||||||
|
Loading…
Reference in New Issue
Block a user