Skip to content

Commit

Permalink
Release 0.48.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Prince781 committed Jul 4, 2021
1 parent 64ff60e commit aaf3c35
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
25 changes: 24 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ We recommend using VSCode with the [Vala plugin](https://marketplace.visualstudi
- [GNOME Builder](#gnome-builder)
- [Kate](#kate)
- [Emacs](#emacs)
- [Sublime Text](#sublime-text)
- [Contributing](#contributing)

## Features
Expand Down Expand Up @@ -126,6 +127,10 @@ if executable('vala-language-server')
endif
```

#### nvim-lspconfig
- [For Neovim 0.5.0](https://github.com/neovim/nvim-lspconfig)
- see `CONFIG.md` in that project

### Visual Studio Code
- [Official Vala plugin](https://marketplace.visualstudio.com/items?itemName=prince781.vala)

Expand All @@ -134,11 +139,29 @@ endif
- Running `ninja -C build install` should install the third-party plugin to `$PREFIX/lib/gnome-builder/plugins`. Enable `Vala` and disable `GNOME Vala Language Server`.

### Kate
- officially supported since Kate 21.07.70
- officially supported in Kate git master

### Emacs
- supported with the [lsp-mode](https://github.com/emacs-lsp/lsp-mode) plugin

### Sublime Text
- Install the [Vala-TMBundle](https://packagecontrol.io/packages/Vala-TMBundle) and [LSP](https://github.com/sublimelsp/LSP) packages
- Add this to your `LSP.sublime-settings`:
```json
{
"clients": {
"vala-language-server": {
"command": [
"/usr/bin/vala-language-server"
],
"selector": "source.vala | source.genie",
"enabled": true
}
}
}
```
- Run `Tools > LSP > Enable Language Server Globally... > vala-language-server`

## Contributing
Want to help out? Here are some helpful resources:

Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('vala-language-server', 'vala', 'c',
version: '0.48.2',
version: '0.48.3',
license: 'LGPL2.1+',
default_options: [
'default_library=static'
Expand Down

0 comments on commit aaf3c35

Please sign in to comment.