We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A user found ST locking up when moving methods definition lines ending with { around.
{
see: https://forum.sublimetext.com/t/bug-crashes-when-shifting-a-line-upwards-in-a-java-file/74069
Start ST in SAFE MODE.
Create new Java file and paste
class Class { public foo.bar(); public void method() { } }
set caret into line public void method() {
public void method() {
try to move line upwards with ctrl+shift+up
ctrl+shift+up
Line is moved upwards, resulting in
class Class { public public void method() { foo.bar(); } }
ST locks up.
ST doesn't lock up if method is cut and pasted between public and foo.bar() lines.
public
foo.bar()
Removing line with single public or merging it with foo.bar() also causes the issue not being triggered.
The following works fine...
class Class { foo.bar(); public void method() { } }
or
4180, 4183
Windows 11
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Description of the bug
A user found ST locking up when moving methods definition lines ending with
{
around.see: https://forum.sublimetext.com/t/bug-crashes-when-shifting-a-line-upwards-in-a-java-file/74069
Steps to reproduce
Start ST in SAFE MODE.
Create new Java file and paste
set caret into line
public void method() {
try to move line upwards with
ctrl+shift+up
Expected behavior
Line is moved upwards, resulting in
Actual behavior
ST locks up.
ST doesn't lock up if method is cut and pasted between
public
andfoo.bar()
lines.Removing line with single
public
or merging it withfoo.bar()
also causes the issue not being triggered.The following works fine...
or
Sublime Text build number
4180, 4183
Operating system & version
Windows 11
(Linux) Desktop environment and/or window manager
No response
Additional information
No response
OpenGL context information
No response
The text was updated successfully, but these errors were encountered: