Sublime Forum

Dev Build 3155

#21

Thanks, looks good to me and fine in distraction free mode.

They don’t on Linux 64 and work perfectly just as they did before 3154.

0 Likes

#22

I thought that might be the case, but I was a bit thrown by how it was sometimes a dict and sometimes None so it seemed like a good idea to point it out.

On the one hand it would be nice if there was a way for the input() method to know that it’s really just being asked “would you provide input in this case?” so that it wouldn’t have to do whatever work it’s doing to create the input handler and any data it might require.

On the other hand, I assume the implication of it being invoked from the command palette in response to a user action would be that it should spend as little time as possible so it doesn’t block the UI, so that’s not really an issue.

Yeah, I thought much the same thing as I was writing that. I wouldn’t have even included it except that after I tested to see if the same thing happens for non TextCommand commands it stopped doing it altogether. I still can’t replicate it doing that, unfortunately.

0 Likes

#23

I too on Win10 Pro x64 1709 with 64bit sublime 3155.

0 Likes

#24

This build has tossed my unsaved “~/Library/Application Support/Sublime Text 3/Local/Session.sublime_session” which caused many of my unsaved drafts (important ones) to be lost.

Any other location where I might find unsaved tabs? Seriously pissed if my tabs are gone. They’ve always survived updates to newer builds.

0 Likes

#25

Nevermind, recovered via Time Machine. But this was utter bullshit.

0 Likes

#26

If you want stable, don’t use the dev branch. There is absolutely no reason to assume that the dev branch is going to be free bugs, even critical ones. Wait for the next beta.

2 Likes

#27

Thanks for this latest version, however there is this one annoying bug which has been nagging me for a few releases now. In Latex (no plugins), when opening a brace, the closing brace gets automatically inserted, but at a super weird position. I don’t know what the reason is, but it keeps breaking my builds. Anyone one else having this problem or a work-around?

0 Likes

#28

@wbond

I like the new arithmetic plugin, but it doesn’t always work as I expect it to.
I was editing some markdown, and I had an unsorted list like

* bla
* bla
* bla bla
* bla bla bla

I wanted to replace the unsorted list with a sorted list, so I select all stars and call arithmetic.
By entering “i.”, I’d expect the stars to be replaced with. If that’s too much, something more pythonic like str(i) + “.” would also be ok, but that doesn’t work either.

1. bla
2. bla
3. bla bla
4. bla bla bla

Unfortunately, does nothing at all.

Here’s a gif showing the behavior.

(also note that halfway through the gif, the arithmetic box gets deleted halfway, I was using ctrl+backspace)

I’m on Windows 10, Sublime build is 3155. There are no errors in the `ctrl+`` debugging view.

0 Likes

#29

I am not sure about sorting, if you want to replace asterisks with numbers see below

I deleted asterisks before performing arithmetic

4 Likes

#30

I don’t have that problem when I write LaTeX, but I’m using LaTeXTools… give the package a try!

0 Likes

#31

When moving lines up or down with multiple cursors, the middle cursors seem to be ignored… at least some times.
The commands that my keyboard shortcuts are bound to are

{
    "keys": ["super+ctrl+down"],
    "command": "move_text_down"
},
{
    "keys": ["super+ctrl+up"],
    "command": "move_text_up"
},

I’m pretty sure the commands are basic ST commands, and not provided by the MultiEditUtils package (checked it’s keybinding files).

0 Likes

#32

which ui theme and color scheme is that ?

0 Likes

#33

Looks like we both have an issue the other one doesn’t. :slight_smile:

0 Likes

#34

The Theme is from Boxy, and the color scheme is Mariana, which ships with ST – apparently inspired by Oceanic Next.
I might have tweaked the cursor color, because I prefer orange-yellowish, but I can’t really remember.

Boxy, and it’s paid successor DA UI, have loads of customizations:

{
"color_scheme": "Packages/User/SublimeLinter/Mariana (SL).tmTheme",
"theme": "Boxy Ocean.sublime-theme",
"theme_accent_cyan": true,
"theme_autocomplete_item_selected_colored": true,
"theme_button_rounded": true,
"theme_find_panel_atomized": true,
"theme_font_san_francisco": true,
"theme_font_xs": true,
"theme_icon_button_highlighted": true,
"theme_popup_border_visible": true,
"theme_quick_panel_item_selected_colored": true,
"theme_sidebar_disclosure": true,
"theme_sidebar_folder_materialized": true,
"theme_sidebar_icon_saturation_md": true,
"theme_sidebar_indent_xl": true,
"theme_sidebar_size_xxs": true,
"theme_size_xs": true,
"theme_tab_font_sm": true,
"theme_tab_selected_overlined": true,
"theme_tab_width_auto": true,
"theme_tooltips_font_xs": true,
"theme_unified": true
}
0 Likes