1.0.5 • Published 7 months ago

obsidian-lsp v1.0.5

Weekly downloads
-
License
MIT
Repository
github
Last release
7 months ago

obsidian-lsp : Language Server for Obsidian.md

Screen record

Motivation

Obsidian.md is a fantastic tool that enables you to create your own Wiki using Markdown. It's not only convenient but also boasts an iOS app that makes viewing easy. However, my goal was to further enhance this experience by allowing the use of any text editor like Neovim. The need for such flexibility is what led me to the development of this LSP server for Obsidian.md. It aims to make editing your Obsidian notes more efficient and flexible, all in your editor of choice.

Features

The Obsidian.md LSP server provides the following main features:

  • textDocument/completion: Provides search within the Vault and autocompletion of links, enabling efficient navigation within your wiki.

  • textDocument/codeAction: If the alias on WikiLink is not listed in the alias settings in the document's frontmatter, add the string into the alias entry in the document's frontmatter.

  • textDocument/publishDiagnostics: Detects and alerts you of broken or empty links, ensuring the consistency and integrity of your wiki.

  • textDocument/definition: Allows you to jump directly to a page from its link, aiding swift exploration within your wiki.

  • textDocument/hover: Displays the content of the linked article in a hover-over preview, saving you the need to follow the link.

  • textDocument/rename: When Rename is performed on a document being edited, the string of the renamed symbol is added to the alias. If the title has not been set, it will also be set to the title of the document.

  • textDocument/references: (Will) display a list of all articles that contain a link to a specific article, helping you understand the context and relationships of your notes. This feature is currently under development.

  • workspace/symbol: (Will) enable searching for symbols across the entire workspace, helping you quickly locate specific topics or keywords. This feature is currently under development.

The Obsidian.md LSP server makes your Obsidian usage more potent and efficient. You can edit your Obsidian Wiki in your preferred editor, maximising its potential.

How to use?

This is not a plugin itself and does not provide each function directly to the editor. If you still want to try it, you can access each function with the following settings.

Neovim

vim.api.nvim_create_autocmd("BufRead", {
	pattern = "*.md",
	callback = function()
		local lspconfig = require('lspconfig')
		local configs = require('lspconfig.configs')
		if not configs.obsidian then
			configs.obsidian = {
				default_config = {
					cmd = { "npx", "obsidian-lsp", "--", "--stdio" },
					single_file_support = false,
					root_dir = lspconfig.util.root_pattern ".obsidian",
					filetypes = { 'markdown' },
				},
			}
		end
		lspconfig.obsidian.setup {}
	end,
})

Related Projects

1.0.2

7 months ago

1.0.5

7 months ago

1.0.4

7 months ago

1.0.3

7 months ago

1.0.1

11 months ago

1.0.0

11 months ago