Skip to content

Commit 17abfee

Browse files
authored
Bumps 1.6.0 (#143)
1 parent cf11dff commit 17abfee

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

.vscodeignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ src/**
1111
vscodeNim/**
1212
.gitignore
1313
tsconfig.json
14-
tslint.json
14+
tslint.json
15+
nimbledeps/**

nimvscode.nimble

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import std/strformat
22
# Package
33

4-
version = "1.4.1"
4+
version = "1.6.0"
55
author = "saem"
66
description = "Nim language support for Visual Studio Code written in Nim"
77
license = "MIT"

package.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "nimlang",
33
"displayName": "nim-lang.org",
44
"description": "Nim extension maintained by the Nim compiler team.",
5-
"version": "1.4.1",
5+
"version": "1.6.0",
66
"publisher": "NimLang",
77
"author": {
88
"name": "NimLang"
@@ -449,6 +449,16 @@
449449
"type": "boolean",
450450
"default": true,
451451
"description": "Automatically run nimble setup when a .nimble file is detected in the current directory."
452+
},
453+
"nim.maxNimsuggestProcesses":{
454+
"type": "number",
455+
"default": 0,
456+
"description": "The maximum number of nimsuggest processes to keep alive in the lsp. 0 means unlimited."
457+
},
458+
"nim.nimsuggestIdleTimeout":{
459+
"type": "number",
460+
"default": 120000,
461+
"description": "The timeout in ms after which an idle nimsuggest will be stopped. If not specified the default is 120 seconds."
452462
}
453463
}
454464
},

0 commit comments

Comments
 (0)