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
@@ -267,8 +268,10 @@ This is a complete list of all of the options that can be passed to `require("ob
267
268
268
269
-- Optional, completion of wiki links, local markdown links, and tags using nvim-cmp.
269
270
completion= {
270
-
--Set to false to disable completion.
271
+
--Enables completion using nvim_cmp
271
272
nvim_cmp=true,
273
+
-- Enables completion using blink.cmp
274
+
blink=false,
272
275
-- Trigger completion at 2 chars.
273
276
min_chars=2,
274
277
},
@@ -613,7 +616,9 @@ See [using obsidian.nvim outside of a workspace / Obsidian vault](#usage-outside
613
616
614
617
#### Completion
615
618
616
-
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.
619
+
obsidian.nvim supports nvim_cmp and blink.cmp completion plugins.
620
+
621
+
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.
617
622
618
623
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