We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c939f3c commit cd0fc05Copy full SHA for cd0fc05
lua/mder/autolist.lua
@@ -11,14 +11,14 @@ local autolist = function(c)
11
["*"] = "%*",
12
["="] = "%=",
13
} do
14
- if line:find("^%s*" .. p .. " %[x%]") then
15
- vim.api.nvim_feedkeys(c .. it .. " [x] ", "n", false)
16
- return
17
- end
18
- if line:find("^%s*" .. p .. " %[ %]") then
19
- vim.api.nvim_feedkeys(c .. it .. " [ ] ", "n", false)
20
21
+ -- if line:find("^%s*" .. p .. " %[x%]") then
+ -- vim.api.nvim_feedkeys(c .. it .. " [x] ", "n", false)
+ -- return
+ -- end
+ -- if line:find("^%s*" .. p .. " %[ %]") then
+ -- vim.api.nvim_feedkeys(c .. it .. " [ ] ", "n", false)
22
if line:find("^%s*" .. p .. " ") then
23
vim.api.nvim_feedkeys(c .. it .. " ", "n", false)
24
return
0 commit comments