burgerstation icon indicating copy to clipboard operation
burgerstation copied to clipboard

Use regex to remove all instances of var/ in proc args

Open Xander3359 opened this issue 1 year ago • 0 comments

What this PR does

So basically when you have a proc you need args in it /proc(args...)

You don't need var/arg This runs a regex to replace all instances of var/

You can do this yourself by running the following substitution Search: (^/[\w/][^ \t]+(.*)(var/|, ?var/.*)(.*)) Replace: $1$3

Xander3359 avatar Jan 29 '24 17:01 Xander3359