You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+8-3
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,7 @@ _Keep in mind this plugin is not meant to replace Obsidian, but to complement it
28
28
29
29
## Features
30
30
31
-
▶️ **Completion:** Ultra-fast, asynchronous autocompletion for note references and tags via [nvim-cmp](https://github.com/hrsh7th/nvim-cmp) (triggered by typing `[[` for wiki links, `[` for markdown links, or `#` for tags), powered by [`ripgrep`](https://github.com/BurntSushi/ripgrep).
31
+
▶️ **Completion:** Ultra-fast, asynchronous autocompletion for note references and tags via [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)or [blink.cmp](https://github.com/Saghen/blink.cmp)(triggered by typing `[[` for wiki links, `[` for markdown links, or `#` for tags), powered by [`ripgrep`](https://github.com/BurntSushi/ripgrep).
32
32
33
33
[](https://github.com/epwalsh/obsidian.nvim/assets/8812459/90d5f218-06cd-4ebb-b00b-b59c2f5c3cc1)
34
34
@@ -195,6 +195,7 @@ The only **required** plugin dependency is [plenary.nvim](https://github.com/nvi
195
195
**Completion:**
196
196
197
197
-**[recommended]**[hrsh7th/nvim-cmp](https://github.com/hrsh7th/nvim-cmp): for completion of note references.
198
+
-[blink.cmp](https://github.com/Saghen/blink.cmp) (new): for completion of note references.
198
199
199
200
**Pickers:**
200
201
@@ -266,8 +267,10 @@ This is a complete list of all of the options that can be passed to `require("ob
266
267
267
268
-- Optional, completion of wiki links, local markdown links, and tags using nvim-cmp.
268
269
completion= {
269
-
--Set to false to disable completion.
270
+
--Enables completion using nvim_cmp
270
271
nvim_cmp=true,
272
+
-- Enables completion using blink.cmp
273
+
blink=false,
271
274
-- Trigger completion at 2 chars.
272
275
min_chars=2,
273
276
},
@@ -612,7 +615,9 @@ See [using obsidian.nvim outside of a workspace / Obsidian vault](#usage-outside
612
615
613
616
#### Completion
614
617
615
-
obsidian.nvim will set itself up as an nvim-cmp source automatically when you enter a markdown buffer within your vault directory, you do **not** need to specify this plugin as a cmp source manually.
618
+
obsidian.nvim supports nvim_cmp and blink.cmp completion plugins.
619
+
620
+
obsidian.nvim will set itself up automatically when you enter a markdown buffer within your vault directory, you do **not** need to specify this plugin as a cmp source manually.
616
621
617
622
Note that in order to trigger completion for tags _within YAML frontmatter_ you still need to type the "#" at the start of the tag. obsidian.nvim will remove the "#" when you hit enter on the tag completion item.
0 commit comments