Skip to content

Commit

Permalink
Merge branch 'st3-develop' into st3176
Browse files Browse the repository at this point in the history
  • Loading branch information
deathaxe committed Oct 16, 2022
2 parents 4621142 + c6cf504 commit 5873d39
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
3 changes: 2 additions & 1 deletion messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,6 @@
"3.1.3": "messages/3.1.3.md",
"3.1.4": "messages/3.1.4.md",
"3.1.5": "messages/3.1.5.md",
"3.1.6": "messages/3.1.6.md"
"3.1.6": "messages/3.1.6.md",
"3.1.7": "messages/3.1.7.md"
}
14 changes: 14 additions & 0 deletions messages/3.1.7.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# MarkdownEditing 3.1.7 Changelog

Your _MarkdownEditing_ plugin is updated. Enjoy new version. For any type of
feedback you can use [GitHub issues][issues].

## Bug Fixes

* Fix automatic tab title if `set_unsaved_view_name` is absent

## New Features

## Changes

[issues]: https://github.com/SublimeText-Markdown/MarkdownEditing/issues
2 changes: 1 addition & 1 deletion plugins/headings/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class MdeUnsavedViewNameSetter(MdeViewEventListener):
MAX_NAME = 50

def on_modified(self):
if self.view.file_name() is not None or not self.view.settings().get("set_unsaved_view_name"):
if self.view.file_name() is not None or not self.view.settings().get("set_unsaved_view_name", True):
return

name = first_heading_text(self.view)
Expand Down

0 comments on commit 5873d39

Please sign in to comment.