16 lines
338 B
C#
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
|
|
}
|