Skip to content

Commit

Permalink
🔖 releases v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AndCake committed Apr 6, 2022
1 parent 5a094d5 commit 7b3b175
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ export MICRO_LSP='python=pyls,go=gopls,typescript=deno lsp={"importMap":"import_
The environment variable is used as a fallback if the `lsp.server` option is not
defined.

If this environment variable is also not present, then the plugin falls back to the following settings:

```
python=pylsp,go=gopls,typescript=deno lsp,javascript=deno lsp,rust=rls,lua=lua-lsp
```

## Testing

This plugin has been tested briefly with the following language servers:
Expand Down
6 changes: 6 additions & 0 deletions help/lsp.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,12 @@ If your lsp.server settings are autoremoved, you can

$ export MICRO_LSP='python=pylsp,go=gopls,typescript=deno lsp={"importMap":"import_map.json"},rust=rls'

The lsp.server default settings (if no others are defined) are:

```
python=pylsp,go=gopls,typescript=deno lsp,javascript=deno lsp,rust=rls,lua=lua-lsp
```

## Install Language Server

To support each language, LSP plugin uses language servers. To use LSP plugin,
Expand Down
2 changes: 1 addition & 1 deletion main.lua
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "0.4.3"
VERSION = "0.5.0"

local micro = import("micro")
local config = import("micro/config")
Expand Down
7 changes: 7 additions & 0 deletions repo.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,13 @@
"Require": {
"micro": ">=2.0.8"
}
},
{
"Version": "0.5.0",
"Url": "https://github.com/AndCake/micro-plugin-lsp/archive/v0.5.0.zip",
"Require": {
"micro": ">=2.0.8"
}
}
]
}]

0 comments on commit 7b3b175

Please sign in to comment.