Sublime Forum

Dev Build 3156

#41

@burakcalik If you just want to have the old behavior install ChainOfCommand (for easy macros) and add this keybinding:

{
    "keys": ["ctrl+shift+p"],
    "command": "chain",
    "args": {
        "commands": [
            ["show_overlay", { "overlay": "command_palette" }],
            ["select_all"],
        ]
    },
},
6 Likes

Ctrl+Shift+P no longer has text pre-selected
#42

@burakcalik, can you try out @r-stein solution? At the time, I did not had though about using ChainOfCommands package at the time I wrote the original solution.

I had added the fix file on another package I already had: https://github.com/evandrocoan/ClearCursorsCaret you can install it manually on the userā€™s folder. Currently this package is not on package control, its integration request is pending review on: https://github.com/wbond/package_control_channel/pull/6690

1 Like

#43

@r-stein Ah it works great! Thank you very much. I only had to modify the ctrl to super because Iā€™m on MacOs.

@addons_zz Thank you too!

1 Like

#44

<3 just came here to look for a fix, thanks for restoring/fixing this. Frustrated me a few times daily :slight_smile:

0 Likes

#45

When the next build planned ?
This bug is really annoyingā€¦

1 Like

#46

Most likely when I finish fixing the issue with macOS ramping up the CPU when a userā€™s opengl renderer switched and they are using a full-size content window (to have colored title bars).

1 Like

#47

I am using Fira Code on OS X.

With the Elixir syntax highlighting, it works for pretty much everything but does not support ā–· ligature.

See attached image:

0 Likes

#48

the correct place to log it is on the Elixir packageā€™s issue tracker:

1 Like

#49

Is there any time estimation on that, since this build has been out for weeks, and itā€™s still killing productivity.
Thanks for addressing this anyway, but Iā€™ve been checking for updates multiple times a day.
<3

0 Likes

#50

No, Iā€™m working on the third new implementation to try and meet the performance we need, but also work around the bug in macOS. If it is causing issues for you, Iā€™d recommend rolling back a build, or moving to the stable build.

4 Likes

#51

I assumed it was imminent, but thatā€™s my fault. In that case Iā€™ll rollback a version.
Thank you for your work. And best wishes on that nasty issue youā€™re working on.

1 Like

#52

Just rolled back to 3143 (stable) but the problem persists. It keeps the previous command around. Whats up with that? I really donā€™t want to always remove the previous command before typing a new one.

0 Likes

#53

On build 3143 the command is initially selected like this:

Then you only need to type something and the command is erased. If you reverted to build 3143 and the command is not initially selected, it mean that you do not reverted to build 3143. If you enter on the About command, what is the version you see?

0 Likes

#54

You are right! Thanks for clarifying that, I was going crazy not understanding where it was breaking or how it was working before. Really appreciate the details about the issue.

0 Likes

#55

Thanks to the team for all your great work.

To anybody who wants to stay on the dev channel, but wishes to roll back a build, just download the package manually:

curl -O https://download.sublimetext.com/sublime-text_build-3155_amd64.deb
sudo dpkg -i sublime-text_build-3155_amd64.deb

(adjusting for your OS and architecture) and then avoid upgrading until the next one comes along.

0 Likes

#56

For anyone reading this, the (I hope temporary) fix is:

  1. Install the package ā€˜chainofcommandsā€™
  2. Add the following to your keybindings:
{
    "keys": ["super+shift+p"],
    "command": "chain",
    "args": {
        "commands": [
            ["show_overlay", { "overlay": "command_palette" }],
            ["select_all"],
        ]
    },
},
4 Likes

Command palette - clear last used command after execute
#58

Might want to try this package https://packagecontrol.io/packages/ElixirSyntax
The official package uses tm syntax, which is not as easy to maintain or update as sublime syntax definition.

0 Likes

#59

Command Pallet: the previous behavior, previous command text highlighted ā€¦ was PERFECT. please revert or add an option
THANKS

0 Likes

#60

Thatā€™s perfect - thanks!!

0 Likes

#61

Bump. This behaviour change is amazingly annoying on a minute-by-minute basis, any estimate on when we might get a fix?

0 Likes