File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 11* Changelog
22** Unreleased 9.0.1
3+ * Fix Accommodate renaming of lsp-postgres binaries
34 * Fix =lsp-org= for org >= 9.7 (see #4300)
45 * Add format on save support
56 * Fix beancount journal file init option
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ This is only for development use."
4646 :group 'lsp-postgres )
4747
4848(defconst lsp-postgres-download-url-format
49- " https://github.com/supabase-community/postgres-language-server/releases/latest/download/postgrestools_ %s-%s"
49+ " https://github.com/supabase-community/postgres-language-server/releases/latest/download/postgres-language-server_ %s-%s"
5050 " Format to the download url link." )
5151
5252(defun lsp-postgres--postgres-ls-url ()
@@ -69,12 +69,12 @@ This is only for development use."
6969
7070(lsp-dependency
7171 'postgres-ls
72- '(:system " postgrestools " )
72+ '(:system " postgres-language-server " )
7373 `(:download :url ,(lsp-postgres--postgres-ls-url)
7474 :store-path ,(f-join lsp-postgres-server-store-path
7575 (pcase system-type
76- ('windows-nt " postgrestools .exe" )
77- (_ " postgrestools " )))
76+ ('windows-nt " postgres-language-server .exe" )
77+ (_ " postgres-language-server " )))
7878 :set-executable? t ))
7979
8080(lsp-register-client
You can’t perform that action at this time.
0 commit comments