diff --git a/code/package-lock.json b/code/package-lock.json
index df068fff..c3ea352d 100644
--- a/code/package-lock.json
+++ b/code/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "esbonio",
- "version": "0.90.1",
+ "version": "0.91.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "esbonio",
- "version": "0.90.1",
+ "version": "0.91.0",
"license": "MIT",
"dependencies": {
"@vscode/python-extension": "^1.0.5",
@@ -18,7 +18,7 @@
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.36",
"@types/vscode": "1.78.0",
- "@vscode/vsce": "^2.21.0",
+ "@vscode/vsce": "^2.21.1",
"mocha": "^10.2.0",
"path-browserify": "^1.0.1",
"ts-loader": "^9.4.4",
@@ -173,9 +173,9 @@
}
},
"node_modules/@vscode/vsce": {
- "version": "2.21.0",
- "resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.21.0.tgz",
- "integrity": "sha512-KuxYqScqUY/duJbkj9eE2tN2X/WJoGAy54hHtxT3ZBkM6IzrOg7H7CXGUPBxNlmqku2w/cAjOUSrgIHlzz0mbA==",
+ "version": "2.21.1",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.21.1.tgz",
+ "integrity": "sha512-f45/aT+HTubfCU2oC7IaWnH9NjOWp668ML002QiFObFRVUCoLtcwepp9mmql/ArFUy+HCHp54Xrq4koTcOD6TA==",
"dev": true,
"dependencies": {
"azure-devops-node-api": "^11.0.1",
@@ -3995,9 +3995,9 @@
"integrity": "sha512-uYhXUrL/gn92mfqhjAwH2+yGOpjloBxj9ekoL4BhUsKcyJMpEg6WlNf3S3si+5x9zlbHHe7FYQNjZEbz1ymI9Q=="
},
"@vscode/vsce": {
- "version": "2.21.0",
- "resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.21.0.tgz",
- "integrity": "sha512-KuxYqScqUY/duJbkj9eE2tN2X/WJoGAy54hHtxT3ZBkM6IzrOg7H7CXGUPBxNlmqku2w/cAjOUSrgIHlzz0mbA==",
+ "version": "2.21.1",
+ "resolved": "https://registry.npmjs.org/@vscode/vsce/-/vsce-2.21.1.tgz",
+ "integrity": "sha512-f45/aT+HTubfCU2oC7IaWnH9NjOWp668ML002QiFObFRVUCoLtcwepp9mmql/ArFUy+HCHp54Xrq4koTcOD6TA==",
"dev": true,
"requires": {
"azure-devops-node-api": "^11.0.1",
diff --git a/code/package.json b/code/package.json
index 8d85b7eb..02f3fccf 100644
--- a/code/package.json
+++ b/code/package.json
@@ -36,7 +36,7 @@
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.36",
"@types/vscode": "1.78.0",
- "@vscode/vsce": "^2.21.0",
+ "@vscode/vsce": "^2.21.1",
"mocha": "^10.2.0",
"path-browserify": "^1.0.1",
"ts-loader": "^9.4.4",
diff --git a/docs/lsp/editors/nvim-lspconfig/init.vim b/docs/lsp/editors/nvim-lspconfig/init.vim
index e6cf5649..c736d792 100644
--- a/docs/lsp/editors/nvim-lspconfig/init.vim
+++ b/docs/lsp/editors/nvim-lspconfig/init.vim
@@ -48,7 +48,7 @@ end
-- Attempt to find a virtualenv that the server can use to build the docs.
local function find_venv()
-
+
-- If there is an active virtual env, use that
if vim.env.VIRTUAL_ENV then
return { vim.env.VIRTUAL_ENV .. "/bin/python" }
diff --git a/lib/esbonio/CHANGES.rst b/lib/esbonio/CHANGES.rst
index ee28f544..e2d4cad2 100644
--- a/lib/esbonio/CHANGES.rst
+++ b/lib/esbonio/CHANGES.rst
@@ -6,7 +6,7 @@ This somewhat quiet release marks the end of the ``0.x`` series as development h
In fact this release includes a sneaky preview of the ``1.0`` version of the server - which includes support for multi-root projects!
If you are feeling adventurous and want to try it out - change the command you use to launch ``esbonio`` to ``python -m esbonio.server``
-However, to set expectations there are many missing features from the preview server.
+However, to set expectations there are many missing features from the preview server.
The only features currently available are sphinx builds, diagnostics, document symbols and live preview/sync scrolling - but they should all work across multiple roots/projects!
See `this issue `__ for more information and if you want to submit any feedback and keep an eye out for some beta releases in the not-to-distant-future!