Interface IEditorInlayHintsOptions
Expand description
interface IEditorInlayHintsOptions {
enabled?:
| "off"
| "on"
| "offUnlessPressed"
| "onUnlessPressed";
fontFamily?: string;
fontSize?: number;
maximumLength?: number;
padding?: boolean;
}Properties§
§§§§§
enabled?: "off" | "on" | "offUnlessPressed" | "onUnlessPressed"Enable the inline hints. Defaults to true.
font Family?: stringFont family of inline hints. Defaults to editor font family.
font Size?: numberFont size of inline hints. Default to 90% of the editor font size.
maximum Length?: numberMaximum length for inlay hints per line Set to 0 to have an unlimited length.
padding?: booleanEnables the padding around the inlay hint. Defaults to false.
Configuration options for editor inlayHints