Skip to content

Releases: SublimeText/TrailingSpaces

v1.3.7

04 Jun 21:45
5695f73
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.3.6...v1.3.7

st3-1.3.7

05 Jun 19:33
5695f73
Compare
Choose a tag to compare

Branched release for ST3 before creating ST4+ releases.

v1.3.6

23 Jan 14:57
c09a3f0
Compare
Choose a tag to compare

Fix

  • Fix crash on active view being a HtmlSheet (#155)
  • Add None check to prevent 'NoneType' has no len() error
  • docs: Update data directory paths (#153)
  • docs: More generic cloning instructions

v1.3.5

28 Jun 20:10
7397387
Compare
Choose a tag to compare

Fix

  • Fix UnicodeDecodeError on non-UTF-8 files (#151)

v1.3.4

25 Feb 20:55
80697d7
Compare
Choose a tag to compare

Fix:

  • Add Markdown to "scope_ignore" default setting (#145)
  • Add settings schema for LSP-json (#149)

v1.3.3

15 May 16:52
c03eb11
Compare
Choose a tag to compare

Fixed

  • Fix crash when "syntax_ignore" option was customized (#143)

Maintenance

  • Remove no longer needed code for handling "startup queue"

v1.3.2

27 Apr 08:16
820c18f
Compare
Choose a tag to compare

Maintenance / Improvements

  • Remove trailing_spaces_ prefixes from settings. Settings with prefixes are still respected for backward-compatibility.
  • Use sublime_lib.NamedSettingsDict to handle settings
  • Apart from trailing_spaces_highlight_color which has special handling, get all options directly from settings so that they are always up-to-date with user preferences. Previously settings were only read on init.

v1.3.1

12 Apr 12:20
ea3ff98
Compare
Choose a tag to compare

Improvements

  • Run async versions of all listeners (#139) (makes sure that main thread is never blocked) (ea3ff98)

v1.3.0

10 Apr 17:39
955ccaf
Compare
Choose a tag to compare

Features

  • New config option: trailing_spaces_scope_ignore (thx @smanolloff) (6bf6b88)
    Defaults to ignoring find-in-files, diff and build output views.

Fixes

  • Don't leave file handle open after opening file for reading (with trim_modified_lines_only enabled) (0c58ab2)
  • Ignore trailing spaces on all lines when making edits with multiple cursors and trailing_spaces_include_empty_lines: false (#137) (299333d)

Improvements

  • Major improvements to performance (tnx @mheinzler) (ad9096d)
  • Use region.redish to highlight trailing spaces (#133) (86b0843)
    This results in trailing spaces being consistently "redish", regardless of theme used
  • Ignore scratch views (#134) (e247190)
  • Ignore widgets (#138) (955ccaf)

v1.2.0

23 Mar 07:07
Compare
Choose a tag to compare

Features:

  • Add palette command to open preferences
  • Open settings in split view

Fixes:

  • Fixed crash in files without selection (#123)

Chore:

  • Add lint configuration and fix minor style issues