🧠 Coding Features
- Remove Comment (use native feature) - Make hlchunk colors dynamic - Add Alternate to quickly switch between c and headers
This commit is contained in:
@@ -200,6 +200,19 @@ wk.add({
|
||||
end,
|
||||
desc = "Toggle Precognition",
|
||||
},
|
||||
{
|
||||
"<leader>a",
|
||||
"<cmd>Alternate<cr>",
|
||||
desc = "Toggle Alternate",
|
||||
cond = function()
|
||||
return (
|
||||
vim.bo.filetype == "c"
|
||||
or vim.bo.filetype == "h"
|
||||
or vim.bo.filetype == "cpp"
|
||||
or vim.bo.filetype == "hpp"
|
||||
)
|
||||
end,
|
||||
},
|
||||
})
|
||||
|
||||
-- ---------------------------- Spell Correction -------------------------------
|
||||
|
||||
Reference in New Issue
Block a user