-
I am getting weird x: in my println line and s: in my print line. Environment
Steps To Reproduce
public class Hello {
public static void main(String args[]) {
System.out.println("Hello world");
}
} |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
These are called inlay hints. Inlay hints add additional inline information to source code to help you understand what the code does. You can toggle inlay hints on/off globally by configuring Specifically for Java, you can configure
Defaults to |
Beta Was this translation helpful? Give feedback.
These are called inlay hints. Inlay hints add additional inline information to source code to help you understand what the code does.
Parameter name inlay hints show the names of parameters in function calls.
You can toggle inlay hints on/off globally by configuring
editor.inlayHints.enabled
. Other options are:•
offUnlessPressed
— Hold ctrl+alt / ctrl+option to see inlay hints•
onUnlessPressed
— Hold ctrl+alt / ctrl+option to hide inlay hintsSpecifically for Java, you can configure
java.inlayHints.parameterNames.enabled
: Enable/disable inlay hints for parameter names. Supported values are:none
(disable parameter name hints),literals
(Enable parameter name hints only for literal argume…