Skip to content
Merged
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.org
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@
* Add support for signatureHelp using ~posframe~. #1999
* Add ~iedit~ integration. #2478
* Add client for Verible SystemVerilog language Server ([[https://github.com/chipsalliance/verible]])
* Add support for per-project Beancount initialization-options

** Release 7.0.1
* Introduced ~lsp-diagnostics-mode~.
Expand Down
3 changes: 2 additions & 1 deletion clients/lsp-beancount.el
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ Use nil (the default) to use the current beancount buffer as the journal file."
`(,lsp-beancount-langserver-executable "--stdio")))
:major-modes '(beancount-mode)
:initialization-options
`((journal_file . ,lsp-beancount-journal-file))
(lambda ()
`((journal_file . ,lsp-beancount-journal-file)))
:server-id 'beancount-ls))

(lsp-consistency-check lsp-beancount)
Expand Down
Loading