1
- *render-markdown.txt* For 0.10.0 Last change: 2024 December 07
1
+ *render-markdown.txt* For 0.10.0 Last change: 2024 December 08
2
2
3
3
==============================================================================
4
4
Table of Contents *render-markdown-table-of-contents*
@@ -11,7 +11,10 @@ Table of Contents *render-markdown-table-of-contents*
11
11
- rocks.nvim | render-markdown-install-rocks.nvim |
12
12
- packer.nvim | render-markdown-install-packer.nvim |
13
13
5. Commands | render-markdown-commands |
14
- 6. Setup | render-markdown-setup |
14
+ 6. Completions | render-markdown-completions |
15
+ - nvim-cmp | render-markdown-completions-nvim-cmp |
16
+ - blink.cmp | render-markdown-completions-blink.cmp |
17
+ 7. Setup | render-markdown-setup |
15
18
- Headings | render-markdown-setup-headings |
16
19
- Paragraphs | render-markdown-setup-paragraphs |
17
20
- Code Blocks | render-markdown-setup-code-blocks |
@@ -24,8 +27,8 @@ Table of Contents *render-markdown-table-of-contents*
24
27
- Links | render-markdown-setup-links |
25
28
- Signs | render-markdown-setup-signs |
26
29
- Indent | render-markdown-setup-indent |
27
- 7 . Colors | render-markdown-colors |
28
- 8 . Info | render-markdown-info |
30
+ 8 . Colors | render-markdown-colors |
31
+ 9 . Info | render-markdown-info |
29
32
- vimwiki | render-markdown-info-vimwiki |
30
33
- obsidian.nvim | render-markdown-info-obsidian.nvim |
31
34
- Images | render-markdown-info-images |
@@ -162,7 +165,42 @@ PACKER.NVIM *render-markdown-install-packer.nvim*
162
165
-------------------------------------------------------------------------------------------------
163
166
164
167
==============================================================================
165
- 6. Setup *render-markdown-setup*
168
+ 6. Completions *render-markdown-completions*
169
+
170
+ This plugin provides completions for both checkboxes and callouts provided you
171
+ follow the relevant setup.
172
+
173
+
174
+ NVIM-CMP *render-markdown-completions-nvim-cmp*
175
+
176
+ >lua
177
+ local cmp = require('cmp' )
178
+ cmp.setup({
179
+ sources = cmp.config.sources({
180
+ { name = 'render-markdown' },
181
+ }),
182
+ })
183
+ <
184
+
185
+
186
+ BLINK.CMP *render-markdown-completions-blink.cmp*
187
+
188
+ >lua
189
+ require('blink.cmp').setup({
190
+ sources = {
191
+ completion = {
192
+ enabled_providers = { 'lsp' , 'path' , 'snippets' , 'buffer' , 'markdown' },
193
+ },
194
+ providers = {
195
+ markdown = { name = 'RenderMarkdown', module = 'render-markdown.integ.blink' },
196
+ },
197
+ },
198
+ })
199
+ <
200
+
201
+
202
+ ==============================================================================
203
+ 7. Setup *render-markdown-setup*
166
204
167
205
Checkout the Wiki
168
206
<https://github.com/MeanderingProgrammer/render-markdown.nvim/wiki > for
@@ -1214,7 +1252,7 @@ Indent Configuration ~
1214
1252
1215
1253
1216
1254
==============================================================================
1217
- 7 . Colors *render-markdown-colors*
1255
+ 8 . Colors *render-markdown-colors*
1218
1256
1219
1257
The table below shows all the highlight groups with their default link
1220
1258
@@ -1305,7 +1343,7 @@ The table below shows all the highlight groups with their default link
1305
1343
-----------------------------------------------------------------------------------------
1306
1344
1307
1345
==============================================================================
1308
- 8 . Info *render-markdown-info*
1346
+ 9 . Info *render-markdown-info*
1309
1347
1310
1348
1311
1349
VIMWIKI *render-markdown-info-vimwiki*
0 commit comments