Skip to content

Commit

Permalink
Merge branch 'main' into docs
Browse files Browse the repository at this point in the history
  • Loading branch information
rchl authored Jan 26, 2024
2 parents 4755793 + 9edc248 commit 800b63d
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: pip install mkdocs-material mkdocs-redirects
- run: |
cd docs
mkdocs gh-deploy --force
make install
make deploy
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.27.0
1.28.0
15 changes: 15 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Minimal makefile for Sphinx documentation

.PHONY: clean

install:
pip install mkdocs mkdocs-material mkdocs-redirects

build:
mkdocs build

deploy:
mkdocs gh-deploy --force

clean:
rm -rf site
1 change: 1 addition & 0 deletions messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"1.25.0": "messages/1.25.0.txt",
"1.26.0": "messages/1.26.0.txt",
"1.27.0": "messages/1.27.0.txt",
"1.28.0": "messages/1.28.0.txt",
"1.3.0": "messages/1.3.0.txt",
"1.3.1": "messages/1.3.1.txt",
"1.4.0": "messages/1.4.0.txt",
Expand Down
16 changes: 16 additions & 0 deletions messages/1.28.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
=> 1.28.0

⚠️⚠️⚠️
To ensure that everything works properly after LSP package is updated,
it's strongly recommended to restart Sublime Text once it finishes updating all packages.
⚠️⚠️⚠️

# New features

- Support setting cursor position in text edits (https://github.com/sublimelsp/LSP/pull/2389) (Rafał Chłodnicki)

# Fixes and Improvements

- Include lsp_utils settings in LSP (https://github.com/sublimelsp/LSP/pull/2395) (Rafał Chłodnicki)
- Add `stimulus-lsp` to docs (https://github.com/sublimelsp/LSP/pull/2391) (Óscar Carretero)
- Add `asm-lsp` to docs (https://github.com/sublimelsp/LSP/pull/2400) (Will Lillis)
6 changes: 6 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# https://docs.netlify.com/configure-builds/file-based-configuration

[build]
base = "docs/"
publish = "site/"
command = "make install && make build"
2 changes: 1 addition & 1 deletion plugin/core/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = (1, 27, 0)
__version__ = (1, 28, 0)
2 changes: 1 addition & 1 deletion plugin/core/windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,7 @@ def listener_for_view(self, view: sublime.View) -> Optional[AbstractViewListener
def discard(self, window: sublime.Window) -> None:
wm = self._windows.pop(window.id(), None)
if wm:
wm.destroy()
sublime.set_timeout_async(wm.destroy)


class RequestTimeTracker:
Expand Down

0 comments on commit 800b63d

Please sign in to comment.