Log-Highlight icon indicating copy to clipboard operation
Log-Highlight copied to clipboard

Not highlighting regex match more than 16384 characters in a line

Open AnmolBaansal opened this issue 3 years ago • 0 comments

When a single line has characters more that 16384, highlight doesn't work. As soon as we add a line break after 16384, line is highlighted. Icon for the match line is shown though, every-time.

Following example is used:

"severity" :
			{
				"result" : { // specify name as yours
					"enable"  : true,
					"pattern" : [ // [ "begin regex", "end regex" ] or [ "match regex", "" ]
						// examples
						[ "^INFO: RES:", "" ]
					],
					"color" : { // ["foreground", "background"]
						"base"  : ["#F92666", ""], // error message
						"link"  : ["#E6DB74", ""], // link in error message
						"quote" : ["#4F99D3", ""], // quote in error message
					},
					"icon"  : "Koloria/check.png", // remove "icon" not to use icon, "dot", "circle" "bookmark" are possible
				}
			},

AnmolBaansal avatar Jul 20 '21 09:07 AnmolBaansal