diff options
Diffstat (limited to 'compiler/options.nim')
-rwxr-xr-x | compiler/options.nim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index c6b2053b1..316ec2b14 100755 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -227,5 +227,7 @@ proc binaryStrSearch*(x: openarray[string], y: string): int = result = - 1 # Can we keep this? I'm using it all the time -template nimdbg*: expr = c.filename.endsWith"nimdbg.nim" -template cnimdbg*: expr = p.module.filename.endsWith"nimdbg.nim" +template nimdbg*: expr = c.filename.endsWith"hallo.nim" +template cnimdbg*: expr = p.module.filename.endsWith"hallo.nim" +template enimdbg*: expr = c.module.name.s == "hallo" +template pnimdbg*: expr = p.lex.fileIdx.ToFilename.endsWith"hallo.nim" |