Table of Contents
TODO: create VS Code extension to run this language server
The server can be installed via npm
(or from source).
sh
npm install -g @bryall/beancount-langserver
Then, you should be able to run the language server with the following command:
sh
beancount-langserver
Follow the instructions below to integrate the language server into your editor.
First, clone this repo and compile it. npm link
will add beancount-langserver
to the PATH
.
sh
git clone git@github.com:bryall/beancount-langserver.git
cd beancount-langserver
npm install
npm run compile
npm link
You will need to install beancount
to get all diagnostics.
sh
pip install -g beancount
TODO
Supports Beancount v2
| Feature | Description |
| ---------------- | ----------------------------------------------------------|
| diagnostics | Provided via beancoubt
|
| formatting | Should generate edits silimar to bean-format
|
| completions | Show completions for Payees, Accounts, Date |
| definitions | Planned for future release |
| folding | Planned for future release |
| hover | Planned for future release |
| rename | Planned for future release |
This server contributes the following settings:
Settings may need a restart to be applied.
The settings for the language server are in the lspconfig repo
Install the beancount language server
sh
npm install -g beancount-langserver
However you install it, you need to remember how to access the binary
Create a lua lspconfig for the beancount LSP example in my dotfiles
lua
local lspconfig = require 'lspconfig'
lspconfig.beancount.setup= {
init_options = {
journal_file = "<path to journal file>",
};
};
If you notice beancount files not having the "beancount" type, you need a neovim v0.5 or master built after Feb 17, 2021
If not the following in a file named beancount.vim
in the ftdetect
folder
```vim function! s:setf(filetype) abort if &filetype !=# a:filetype let &filetype = a:filetype endif endfunction
au BufNewFile,BufRead .bean,.beancount call s:setf('beancount') ```
Plan to make a VS Code extesion in the future
Tested and Developed on Neovim v0.5 (master branch)
SETUP TODO
TODO
Please do :)