Skip to content

Commit 4876cb8

Browse files
committed
Merge branch 'st4-develop'
2 parents 6a9da25 + b54c441 commit 4876cb8

14 files changed

Lines changed: 1761 additions & 1679 deletions

.github/workflows/ci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
strategy:
2626
matrix:
2727
python:
28-
- '3.13'
28+
- '3.14'
2929
arch:
3030
- 'x64'
3131
steps:

.github/workflows/ci-syntax-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- build: latest
3333
default_packages: master
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636
- uses: SublimeText/syntax-test-action@v2
3737
with:
3838
build: ${{ matrix.build }}

.github/workflows/deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Python
2121
uses: actions/setup-python@v6
2222
with:
23-
python-version: '3.13'
23+
python-version: '3.14'
2424
- name: Install MkDocs
2525
run: pip install -r docs/requirements.txt
2626
- name: Run MkDocs

Default (Linux).sublime-keymap

Lines changed: 33 additions & 12 deletions
Large diffs are not rendered by default.

Default (OSX).sublime-keymap

Lines changed: 33 additions & 12 deletions
Large diffs are not rendered by default.

Default (Windows).sublime-keymap

Lines changed: 33 additions & 12 deletions
Large diffs are not rendered by default.

Preferences.sublime-settings

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
"mde.keymap_disable.fold_section": false,
178178
// Open a panel showing all functions related to folding
179179
// Default keys: (OSX/Linux/Win)ctrl+shift+tab
180-
"mde.keymap_disable.show_fold_all_sections": false,
180+
"mde.keymap_disable.show_fold_all_sections": true,
181181
// Jump to the next heading (any level/same or higher level)
182182
// Default keys: (OSX)super+ctrl/shift+pagedown (Linux/Win)ctrl+shift(+alt)+pagedown
183183
"mde.keymap_disable.goto_next_heading": false,

messages.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@
2727
"3.3.0": "messages/3.3.0.md",
2828
"3.4.0": "messages/3.4.0.md",
2929
"3.5.0": "messages/3.5.0.md",
30-
"3.6.0": "messages/3.6.0.md"
30+
"3.6.0": "messages/3.6.0.md",
31+
"3.6.1": "messages/3.6.1.md"
3132
}

messages/3.6.1.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# MarkdownEditing 3.6.1 Changelog
2+
3+
Your _MarkdownEditing_ plugin is updated. Enjoy new version. For any type of
4+
feedback you can use [GitHub issues][issues].
5+
6+
## Bug Fixes
7+
8+
- disable `mde_show_fold_all_sections` binding by default (fixes #807)
9+
- Insert new list items on enter only on empty selection (fixes #810)
10+
- fix "extend list" binding constraints (fixes #812)
11+
- fix code-spans not properly terminated in tables
12+
13+
## New Features
14+
15+
## Changes
16+
17+
- embedded linter no longer complains on Bash- and Python-style comments in code blocks
18+
(previously it triggered the `MD023` rule)
19+
- refactor syntax definitions of fenced code blocks to work around a crash
20+
caused by unbalanced fences
21+
22+
[issues]: https://github.com/SublimeText-Markdown/MarkdownEditing/issues

plugins/headings/level.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,7 @@ def _set_level(self, edit, calc_level, select):
7878
view = self.view
7979
match_heading_hashes = view.settings().get("mde.match_heading_hashes")
8080
pattern = re.compile(
81-
r"""
82-
(?x)
81+
r"""(?x)
8382
^([ \t>]*) # block quotes
8483
(?:
8584
(\#+) # leading hashes

0 commit comments

Comments
 (0)