RemoteDebug icon indicating copy to clipboard operation
RemoteDebug copied to clipboard

Allow bracket pattern customization

Open tablatronix opened this issue 5 years ago • 1 comments

allow tokens to replace (...) bracket enclosures

I have my own syntax highlighter and use [..] brackets for debug features

It looks like this might be an easy change

tablatronix avatar Sep 30 '20 23:09 tablatronix

It is fairly easy

  • [ ] allow customization of rdebugX strings

  • [ ] allow custom tokens for debug levels

			if (_showDebugLevel) {
				switch (_lastDebugLevel) {
				case PROFILER:
					show.concat("(P"); // tokenize this whole string eg. "[E],[ERROR]"

This seems to be the only 2 locations needed

tablatronix avatar Oct 01 '20 00:10 tablatronix