Skip to content

Commit aaf3c35

Browse files
committed
Release 0.48.3
1 parent 64ff60e commit aaf3c35

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

README.md

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ We recommend using VSCode with the [Vala plugin](https://marketplace.visualstudi
3131
- [GNOME Builder](#gnome-builder)
3232
- [Kate](#kate)
3333
- [Emacs](#emacs)
34+
- [Sublime Text](#sublime-text)
3435
- [Contributing](#contributing)
3536

3637
## Features
@@ -126,6 +127,10 @@ if executable('vala-language-server')
126127
endif
127128
```
128129

130+
#### nvim-lspconfig
131+
- [For Neovim 0.5.0](https://github.com/neovim/nvim-lspconfig)
132+
- see `CONFIG.md` in that project
133+
129134
### Visual Studio Code
130135
- [Official Vala plugin](https://marketplace.visualstudio.com/items?itemName=prince781.vala)
131136

@@ -134,11 +139,29 @@ endif
134139
- 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`.
135140

136141
### Kate
137-
- officially supported since Kate 21.07.70
142+
- officially supported in Kate git master
138143

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

147+
### Sublime Text
148+
- Install the [Vala-TMBundle](https://packagecontrol.io/packages/Vala-TMBundle) and [LSP](https://github.com/sublimelsp/LSP) packages
149+
- Add this to your `LSP.sublime-settings`:
150+
```json
151+
{
152+
"clients": {
153+
"vala-language-server": {
154+
"command": [
155+
"/usr/bin/vala-language-server"
156+
],
157+
"selector": "source.vala | source.genie",
158+
"enabled": true
159+
}
160+
}
161+
}
162+
```
163+
- Run `Tools > LSP > Enable Language Server Globally... > vala-language-server`
164+
142165
## Contributing
143166
Want to help out? Here are some helpful resources:
144167

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('vala-language-server', 'vala', 'c',
2-
version: '0.48.2',
2+
version: '0.48.3',
33
license: 'LGPL2.1+',
44
default_options: [
55
'default_library=static'

0 commit comments

Comments
 (0)