Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- `definition` will resolve and follow `[[#^block]]` and `[block](#^block)` links.
- `definition` will resolve and follow `[[#header]]` and `[header](#header)` links.
- A new `search` module to contain search related options.
- LSP based completion instead of source per plugin.

### Changed

Expand Down
9 changes: 2 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ _This plugin is not meant to replace Obsidian, but to complement it._ The Obsidi

## 🍴 About the fork

The original project has not been actively maintained for quite a while and with the ever-changing Neovim ecosystem, new widely used tools such as [blink.cmp](https://github.com/Saghen/blink.cmp) or [snacks.picker](https://github.com/folke/snacks.nvim/blob/main/docs/picker.md) were not supported.
The original project has not been actively maintained for quite a while and with the ever-changing Neovim ecosystem, new widely used tools such as [snacks.picker](https://github.com/folke/snacks.nvim/blob/main/docs/picker.md) were not supported.

With bugs, issues and pull requests piling up, people from the community decided to fork and maintain the project.

Expand All @@ -44,7 +44,7 @@ With bugs, issues and pull requests piling up, people from the community decided

## ⭐ Features

▶️ **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)
▶️ **Completion:** Fast, asynchronous autocompletion for note references and tags via LSP completion (triggered by typing `[[` for wiki links, `[` for markdown links, or `#` for tags)

🏃 **Navigation:** Navigate throughout your vault via links, backlinks, tags and etc.

Expand Down Expand Up @@ -137,11 +137,6 @@ There's one entry point user command for this plugin: `Obsidian`

There's no required dependency, but there are a number of optional dependencies that enhance the obsidian.nvim experience.

**Completion:**

- [blink.cmp](https://github.com/Saghen/blink.cmp)
- [nvim-cmp](https://github.com/hrsh7th/nvim-cmp)

**Pickers:**

- [telescope.nvim](https://github.com/nvim-telescope/telescope.nvim)
Expand Down
7 changes: 0 additions & 7 deletions lua/obsidian/autocmds.lua
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,6 @@ vim.api.nvim_create_autocmd({ "BufEnter" }, {
api.nav_link "prev"
end, { buffer = true, desc = "Obsidian Previous Link" })

-- Inject completion sources, providers to their plugin configurations
if opts.completion.nvim_cmp then
require("obsidian.completion.plugin_initializers.nvim_cmp").inject_sources(opts)
elseif opts.completion.blink then
require("obsidian.completion.plugin_initializers.blink").inject_sources(opts)
end

require("obsidian.lsp").start(ev.buf)

exec_autocmds "ObsidianNoteEnter"
Expand Down
6 changes: 0 additions & 6 deletions lua/obsidian/completion/init.lua

This file was deleted.

197 changes: 0 additions & 197 deletions lua/obsidian/completion/plugin_initializers/blink.lua

This file was deleted.

34 changes: 0 additions & 34 deletions lua/obsidian/completion/plugin_initializers/nvim_cmp.lua

This file was deleted.

76 changes: 0 additions & 76 deletions lua/obsidian/completion/refs.lua

This file was deleted.

Loading
Loading