Testing a push

This commit is contained in:
Norm Rasmussen
2023-01-24 15:20:37 -05:00
parent 22aa9ed0fc
commit c7c81b6525
6 changed files with 63 additions and 67 deletions

View File

@ -89,7 +89,7 @@ M(
'n', '<C-f>', "@f<CR>",
{silent=true, noremap=true},
"Todo Comments",
"todo_feat",
"add_feat",
"Add Feature Request tag to the beginning of the line. "
)
@ -97,7 +97,7 @@ M(
'n', '<C-x>', "@c<CR>",
{silent=true, noremap=true},
"Todo Comments",
"todo_complete",
"add_complete",
"Replace tag with Complete tag at beginning of the line."
)
@ -105,32 +105,32 @@ M(
'n', '<C-w>', "@w<CR>",
{silent=true, noremap=true},
"Todo Comments",
"todo_error",
"add_error",
"Add Warning/Error tag at the beginning of the line."
)
M(
'n', '<leader>ce', ":TodoTrouble keywords=TODO,FEAT<CR> | resize +10<CR>",
'n', '<leader>ce', ":TodoTrouble keywords=TODO<CR> | :resize +10<CR>",
{silent=true, noremap=true},
"Show Todos",
"todo_trouble_todo",
"Show Todos from Folke's Todo Comments Plugin."
"show_todos",
"Show Todo Tags."
)
M(
'n', '<leader>cf', ":TodoTrouble keywords=FEAT<CR>",
{silent=true, noremap=true},
"Show Todos",
"todo_trouble_todo",
"Show Feature Requests from Folke's Todo Comments Plugin."
"show_features",
"Show Feature Requests."
)
M(
'n', '<leader>cq', ":TodoTrouble keywords=ERROR, WARN<CR>",
{silent=true, noremap=true},
"Show Todos",
"todo_trouble_todo",
"Show Errors from Folke's Todo Comments Plugin."
"show_warnings",
"Show Errors Tags."
)
M(
@ -140,11 +140,3 @@ M(
"black_current_file",
"Use Black Formatting on Current File."
)
M(
'n', '<leader>m', ":! markdownlint -f %<CR>",
{silent=true, noremap=true},
"Black Cwf",
"black_current_file",
"Use Black Formatting on Current File."
)