added nvim coc config files minus node modules
This commit is contained in:
parent
baac0fdd4f
commit
fc51cf5a4a
19405 changed files with 6211125 additions and 0 deletions
32
coc/extensions/node_modules/coc-markdownlint/snippets/snippets.json
generated
vendored
Normal file
32
coc/extensions/node_modules/coc-markdownlint/snippets/snippets.json
generated
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"insertMarkdownLintDisableComment": {
|
||||
"prefix": "markdownlint-disable",
|
||||
"body": "<!-- markdownlint-disable ${1:MD000 }-->",
|
||||
"description": "Disables one or more rules by name (MD013), alias (line-length), or tag (whitespace). Multiple rules are space-delimited (MD018 MD019). If no rules are specified, all rules are disabled. Takes effect starting with the line the comment is on."
|
||||
},
|
||||
"insertMarkdownLintEnableComment": {
|
||||
"prefix": "markdownlint-enable",
|
||||
"body": "<!-- markdownlint-enable ${1:MD000 }-->",
|
||||
"description": "Enables one or more rules by name (MD013), alias (line-length), or tag (whitespace). Multiple rules are space-delimited (MD018 MD019). If no rules are specified, all rules are enabled. Takes effect starting with the line the comment is on."
|
||||
},
|
||||
"insertMarkdownLintDisableFileComment": {
|
||||
"prefix": "markdownlint-disable-file",
|
||||
"body": "<!-- markdownlint-disable-file ${1:MD000 }-->",
|
||||
"description": "Disables one or more rules by name (MD013), alias (line-length), or tag (whitespace). Multiple rules are space-delimited (MD018 MD019). If no rules are specified, all rules are disabled. Applies to the entire file."
|
||||
},
|
||||
"insertMarkdownLintEnableFileComment": {
|
||||
"prefix": "markdownlint-enable-file",
|
||||
"body": "<!-- markdownlint-enable-file ${1:MD000 }-->",
|
||||
"description": "Enables one or more rules by name (MD013), alias (line-length), or tag (whitespace). Multiple rules are space-delimited (MD018 MD019). If no rules are specified, all rules are enabled. Applies to the entire file."
|
||||
},
|
||||
"insertMarkdownLintCaptureComment": {
|
||||
"prefix": "markdownlint-capture",
|
||||
"body": "<!-- markdownlint-capture -->",
|
||||
"description": "Captures the current rule configuration. Takes effect starting with the line the comment is on."
|
||||
},
|
||||
"insertMarkdownLintRestoreComment": {
|
||||
"prefix": "markdownlint-restore",
|
||||
"body": "<!-- markdownlint-restore -->",
|
||||
"description": "Restores the most recently captured rule configuration. Defaults to the document's initial configuration. Takes effect starting with the line the comment is on."
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue