Sublime Forum

Dev Build 2154

#1

Dev Build 2154 is out now, with a few more tweaks to auto complete.

0 Likes

#2

It’s not showing up in the auto-update…

0 Likes

#3

Auto update should be triggered now

0 Likes

#4

[quote=“C0D312”]Hmmm… The lastest update broke my plugin. Ironically, I believe it’s from something that I requested:

My plugin triggers autocomplete on period. In the lastest update, the autocomplete box disappears instantly. My only guess as to why is because ST2 looks at the previous character, sees it’s a period and closes the autocomplete.[/quote]

This is still an issue in this version. While I have a workaround in my plugin (using underscores), it is not ideal. If I may make a suggestion, you could hide the autocomplete using a macro, something like:

[code]
{ “keys”: “backspace”], “command”: “hide_auto_complete”, “context”:

    { "key": "auto_complete_visible", "operator": "equal", "operand": true },

    { "key": "preceding_text", "operator": "regex_match", "operand": "^a-zA-Z0-9]$", "match_all": true }
]

},[/code]

Other than that, the autocomplete is looking pretty damn sharp. Thanks for your hard work and Happy Holidays.

0 Likes