Sublime Forum

Dev Build 3132

#15

I don’t believe so

0 Likes

#16

thanks for confirming :slight_smile: I was having a weird issue where I was experiencing unexpected increased indentation after typing Enter and when reindenting, and setting indentParens to false prevented it - but after (changing it back to true and) restarting ST, it is working normally again…

(I wasn’t able to replicate it on the portable version, even after copying my data folder over, so not sure what happened)

0 Likes

#17
  • Add command equivalents for Find in Files panel

Can you show an example of this? How about binding F15 to search all open files/folders for the string TODO ?

0 Likes

#18

Same issue exists in Mac OS as well.

0 Likes

#19

Glad to see the software is still alive and kicking.

Mariana theme looks nice, going to give that a whirl today :slight_smile:

0 Likes

#20

Re: Add command equivalents for Find in Files panel

There seems to be a problem with this. The Find and Replace buttons in the Find in Files panel now have key hints on mouse hover, respectively Alt+Enter and Ctrl+Alt+Enter, but these key bindings do not perform any noticeable actions, although both buttons still perform the appropriate action when clicked. Those key bindings are also not mapped in the default sublime-keymap files (using the find_in_files panel context), and a diff between the Default (Linux).sublime-keymap files of build 3131 and 3132 reported them to be identical (but no key hints on mouse hover in build 3131 !).

Adding the following bindings to my user sublime-keymap file led to the find_all and replace_all actions working in the active view only as if the Find or the Find/Replace panels had been invoked rather than the Find in Files panel.

{ "keys": ["alt+enter"], "command": "find_all", "args": {"close_panel": true},
    "context": [{"key": "panel", "operand": "find_in_files"}, {"key": "panel_has_focus"}]
},

{ "keys": ["ctrl+alt+enter"], "command": "replace_all", "args": {"close_panel": true},
     "context": [{"key": "panel", "operand": "find_in_files"}, {"key": "panel_has_focus"}]
},

Hope this helps.

1 Like

#21

I’d expect https://github.com/SublimeTextIssues/Core/issues/1581 to get updated with more information on the Find in Files commands, but nothing yet…

1 Like

#23

Fix multi-cursor pasting when clipboard contains one or more full lines

Can you elaborate on what changed here? I haven’t figured it out.

0 Likes

#25

For more technical details on issues, check out: https://github.com/SublimeTextIssues/Core/issues?q=is%3Aissue+milestone%3A"Build+3132"+is%3Aclosed.

This specific issue was https://github.com/SublimeTextIssues/Core/issues/1182. It also manifested itself in some slightly different bug reports in different places.

3 Likes

pinned globally #26
0 Likes

#27

You are correct, it is not working properly. I’m looking into it now.

1 Like

#28

Aha! I don’t have copy when selection is empty enabled, so I totally missed this bug. Thanks!

0 Likes

#29

It seems to me like PHP syntax highlighting had a bit of a regression, -> and :: aren’t getting colours anymore. They used to be red but are now white.

0 Likes

#30

The scope changed to be consistent with other syntaxes. Previously it was keyword.operator, but now is punctuation.accessor. This was done on purpose: https://github.com/sublimehq/Packages/commit/67550e94a3627d0207e7d8ae57f0404ea082947c.

If you want the previous colors, you should add punctuation.accessor to your color scheme with the desired color. The new schemes Mariana and Sixteen style punctuation.accessor slightly different for a more subtle look. Breakers styles them like other operators.

0 Likes

Build 3143 PHP syntax degradation?
#31

I am also having the issue on Windows 7 normal DPI. I don’t have the directwrite option specified in my user preferences. Did removing that option from your preferences fix the issue for you?

1 Like

#32

Can someone give some details about the new color schemes? I am using a modified version of Solarized Dark. What am I missing with that? Super outdated?

0 Likes

#33

Why put the spaces dots thicker on 3132?

This is on 3131:

I prefer them smaller.

1 Like

Draw_white_space dots get much bigger in 3143
#34

“Removed legacy color schemes, and moved them into an optional package on Package Control”

Where can I find some of the old color schemes, namely Slush and Poppies?

0 Likes

#35

Here they are: Color Scheme - Legacy.

0 Likes

#36

The touchpad scrolling issue mentioned here is still present.

0 Likes