diff options
| author | aldur <aldur@users.noreply.github.com> | 2025-07-14 18:47:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-14 09:47:47 -0700 |
| commit | ac75e72017ab26fda03781c67834bc1cc7273366 (patch) | |
| tree | 12b79e2482e60e256d982ab9434d215458efbe01 | |
| parent | docs: update configs.md (diff) | |
| download | nvim-lspconfig-ac75e72017ab26fda03781c67834bc1cc7273366.tar nvim-lspconfig-ac75e72017ab26fda03781c67834bc1cc7273366.tar.gz nvim-lspconfig-ac75e72017ab26fda03781c67834bc1cc7273366.tar.bz2 nvim-lspconfig-ac75e72017ab26fda03781c67834bc1cc7273366.tar.lz nvim-lspconfig-ac75e72017ab26fda03781c67834bc1cc7273366.tar.xz nvim-lspconfig-ac75e72017ab26fda03781c67834bc1cc7273366.tar.zst nvim-lspconfig-ac75e72017ab26fda03781c67834bc1cc7273366.zip | |
fix(clarinet)!: rename `clarity_lsp` to `clarinet` #3948
| -rw-r--r-- | lsp/clarinet.lua | 9 | ||||
| -rw-r--r-- | lsp/clarity_lsp.lua | 10 |
2 files changed, 9 insertions, 10 deletions
diff --git a/lsp/clarinet.lua b/lsp/clarinet.lua new file mode 100644 index 00000000..f5e8163d --- /dev/null +++ b/lsp/clarinet.lua @@ -0,0 +1,9 @@ +---@brief +--- https://github.com/hirosystems/clarinet +--- +--- Clarinet is the fastest way to build, test, and deploy smart contracts on the Stacks blockchain. +return { + cmd = { 'clarinet', 'lsp' }, + filetypes = { 'clar', 'clarity' }, + root_markers = { '.git' }, +} diff --git a/lsp/clarity_lsp.lua b/lsp/clarity_lsp.lua deleted file mode 100644 index 5102116b..00000000 --- a/lsp/clarity_lsp.lua +++ /dev/null @@ -1,10 +0,0 @@ ----@brief ---- ----`clarity-lsp` is a language server for the Clarity language. Clarity is a decidable smart contract language that optimizes for predictability and security. Smart contracts allow developers to encode essential business logic on a blockchain. ---- ---- To learn how to configure the clarity language server, see the [clarity-lsp documentation](https://github.com/hirosystems/clarity-lsp). -return { - cmd = { 'clarity-lsp' }, - filetypes = { 'clar', 'clarity' }, - root_markers = { '.git' }, -} |
