Skip to content

Commit 6426600

Browse files
Uzaaftmehalter
andauthored
fix(linear-nvim)!: Change leader from <Leader>m to <Leader>L (#1314)
* fix(linear-nvim): Change leader from `<Leader>m` to `<Leader>L` to This makes more sense semantically * Update lua/astrocommunity/project/linear-nvim/init.lua Co-authored-by: Micah Halter <[email protected]> * Update init.lua --------- Co-authored-by: Micah Halter <[email protected]>
1 parent 89c9960 commit 6426600

File tree

1 file changed

+5
-5
lines changed
  • lua/astrocommunity/project/linear-nvim

1 file changed

+5
-5
lines changed

lua/astrocommunity/project/linear-nvim/init.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,24 +8,24 @@ return {
88
"AstroNvim/astrocore",
99
opts = function(_, opts)
1010
local maps = opts.mappings
11-
local prefix = "<Leader>m"
11+
local prefix = "<Leader>L"
1212

1313
maps.n[prefix] = { desc = "Linear" }
14-
maps.n[prefix .. "m"] = {
14+
maps.n[prefix .. "l"] = {
1515
function() require("linear-nvim").show_assigned_issues() end,
1616
desc = "Show assigned issues",
1717
}
1818
maps.v[prefix .. "c"] = {
1919
function() require("linear-nvim").create_issue() end,
20-
desc = "Toggle local note",
20+
desc = "Create issue",
2121
}
2222
maps.n[prefix .. "c"] = {
2323
function() require("linear-nvim").create_issue() end,
24-
desc = "Toggle local note",
24+
desc = "Create issue",
2525
}
2626
maps.n[prefix .. "s"] = {
2727
function() require("linear-nvim").show_issue_details() end,
28-
desc = "Toggle local note",
28+
desc = "Show issue details",
2929
}
3030
end,
3131
},

0 commit comments

Comments
 (0)