Skip to content

Releases: akatopo/GithubEmoji

2.0.0

24 Sep 17:38
Compare
Choose a tag to compare

New Features

  • Updated to work with the new Sublime Text 4 completion API

Bug Fixes

  • Fixed extraneous @ left when using auto_complete_selector and auto_complete_triggers settings (only in ST4, ST3 API doesn't allow replacing a trigger with another symbol)
  • Fixed missing : on Tab-completion in ST4
  • Fixed broken Tab-completion after @ in ST4

Note: If you define emojiCompletions/commitEmojiCompletions in the GithubEmoji user preferences:

  • and are still using Sublime Text 3, you need to add 3 to the key name: emojiCompletions3/commitEmojiCompletions3

  • and upgraded to Sublime Text 4, you need to add back the first colon : to the completion values in emojiCompletions, e.g.

    [":smiley: 😃\tsmiling face with open mouth", "smiley:"] becomes

    [":smiley: 😃\tsmiling face with open mouth", ":smiley:"]

    ...and remove the first colon : from the completion values in those keys in commitEmojiCompletions that don't start with a colon (since the colon will be automatically added by the plugin), e.g.

    ["version tag 🔖\t:bookmark:", ":bookmark:"] becomes

    ["version tag 🔖\t:bookmark:", "bookmark:"]

    but the keys starting with a colon are fine, e.g.

    [":bookmark: 🔖\tversion tag", ":bookmark:"] doesn't change

    ...and create a copy of commitEmojiCompletions under the name of commitEmojiCompletionsAuto and add the first commercial at @ to the completion triggers, e.g.

    [":bookmark: 🔖\tversion tag", ":bookmark:"] becomes

    ["@:bookmark: 🔖\tversion tag", ":bookmark:"] and

    ["version tag 🔖\t:bookmark:", ":bookmark:"] becomes

    ["@version tag 🔖\t:bookmark:", ":bookmark:"]

    this is needed to make autocompletion triggered via auto_complete_selector and auto_complete_triggers not leave an extraneous @

1.2.0

24 Nov 17:35
Compare
Choose a tag to compare

New Features

  • Updated emoji to unicode 9.0
  • Added new commit emoji for "security fix", "removal", "accessibility"
  • Removed "general update" commit emoji
  • Changed emoji for "cosmetic" and "refactoring" commit emoji

1.1.5

03 Oct 10:33
Compare
Choose a tag to compare

New Features

  • Commit message emoji are now also searchable by role
  • Added new commit emoji for Refactoring and Internationalization
  • Added completion support for SublimeGit commit messages (issue #3)

1.1.4

22 Jul 16:42
Compare
Choose a tag to compare

New Features

  • Added new commit emoji for WIP, deprecation, and tooling

1.1.3

29 Mar 15:41
Compare
Choose a tag to compare

Bug Fixes

  • Added missing emoji aliases

1.1.2

28 Feb 14:54
Compare
Choose a tag to compare

Bug Fixes

  • Fixed extra ':' being added when using auto_complete_selector and auto_complete_triggers settings

Note: If you define emojiCompletions in the GithubEmoji user preferences you need to remove the first colon from the completion values.

Ex.

[":smiley: 😃\tsmiling face with open mouth" ,":smiley:"]

becomes

[":smiley: 😃\tsmiling face with open mouth" ,"smiley:"]

1.1.1

14 Oct 16:10
Compare
Choose a tag to compare

Bug Fixes

  • Completions are now working for documents with scope text.html.markdown instead of files with extensions of .md and .markdown. This fixes the issue of completions working only on saved markdown files. Additionaly the emojiFileExtensions array in the default settings has been replaced with an emojiScopes array containing scopes that emoji completions are enabled.

1.1.0

13 Oct 17:10
Compare
Choose a tag to compare

New Features

  • Completions are now enabled for files ending in .md and .markdown, and for files named COMMIT_EDITMSG (git commit messages). Extensions and filenames can be customized by changing the emojiFileExtensions and emojiFileNames arrays respectively.

1.0.0

02 Oct 18:35
Compare
Choose a tag to compare
:books: fixed usage screenshot size