Skip to content

Commit

Permalink
Bump server and prep release
Browse files Browse the repository at this point in the history
  • Loading branch information
jdkato committed May 5, 2023
1 parent 835ac4a commit 0b04681
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 10 deletions.
10 changes: 5 additions & 5 deletions LSP-vale-ls.sublime-settings
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,24 @@
//
// If false, the Vale executable must be installed and available on
// your $PATH.
"vale-ls.installVale": true,
"installVale": true,
// Runs `vale sync` upon starting the server.
//
// Also available as a command: "LSP-vale-ls: Sync Configuration".
"vale-ls.syncOnStartup": true,
"syncOnStartup": true,
// An output filter to apply when calling Vale.
//
// Example:
//
// "vale-ls.filter": ".Level in ['warning', 'error']"
// "filter": ".Level in ['warning', 'error']"
//
// See https://vale.sh/manual/filter/ for more information.
"vale-ls.filter": "",
"filter": "",
// An absolute path to a Vale configuration file (`.vale.ini`).
//
// In general, you should leave this blank and rely on the default
// search process instead.
"vale-ls.configPath": ""
"configPath": ""
},
"selector": "source.ini | source.yaml | text.html.markdown | text.restructuredtext | text.asciidoc",
"command": [
Expand Down
3 changes: 3 additions & 0 deletions messages.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"0.2.1": "messages/0.2.1.txt"
}
3 changes: 3 additions & 0 deletions messages/0.2.1.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Sublundo v0.2.1

* Dropped `vale-ls` namespace from `initializationOptions`.
2 changes: 1 addition & 1 deletion plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#
# After changing this tag, go through the server settings again to see if any
# new server settings are added or old ones removed.
TAG = "v0.3.0"
TAG = "v0.3.1"
URL = "https://github.com/errata-ai/vale-ls/releases/download/{tag}/vale-ls-{arch}-{platform}.zip"


Expand Down
8 changes: 4 additions & 4 deletions sublime-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@
"properties": {
"initializationOptions": {
"properties": {
"vale-ls.installVale": {
"installVale": {
"default": true,
"description": "Install and update Vale automatically.",
"type": "boolean"
},
"vale-ls.syncOnStart": {
"syncOnStart": {
"default": true,
"description": "Runs `vale sync` upon starting the server.",
"type": "boolean"
},
"vale-ls.filter": {
"filter": {
"default": "",
"description": "An output filter to apply when calling Vale.",
"type": "string"
},
"vale-ls.configPath": {
"configPath": {
"default": "",
"description": "An absolute path to a .vale.ini file to be used as the default configuration.",
"type": "string"
Expand Down

0 comments on commit 0b04681

Please sign in to comment.