Tempo: Added not regex operator (#74907)

Added not regex operator
This commit is contained in:
Andre Pereira 2023-09-14 16:18:05 +01:00 committed by GitHub
parent a0e6e76ca6
commit fa2f0333f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -23,8 +23,8 @@ export const languageConfiguration: languages.LanguageConfiguration = {
folding: {},
};
export const operators = ['=', '!=', '>', '<', '>=', '<=', '=~'];
export const stringOperators = ['=', '!=', '=~'];
export const operators = ['=', '!=', '>', '<', '>=', '<=', '=~', '!~'];
export const stringOperators = ['=', '!=', '=~', '!~'];
export const numberOperators = ['=', '!=', '>', '<', '>=', '<='];
export const intrinsics = ['duration', 'kind', 'name', 'status'];