RobotNet/RobotNet.WebApp/Scripts/Monaco/Languages/CompletionItemInsertTextRule.cs
2025-10-15 15:15:53 +07:00

16 lines
338 B
C#

namespace RobotNet.WebApp.Scripts.Monaco.Languages;
public enum CompletionItemInsertTextRule
{
None = 0,
/**
* Adjust whitespace/indentation of multiline insert texts to
* match the current line indentation.
*/
KeepWhitespace = 1,
/**
* `insertText` is a snippet.
*/
InsertAsSnippet = 4
}