diff options
Diffstat (limited to 'compiler/lineinfos.nim')
-rw-r--r-- | compiler/lineinfos.nim | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/compiler/lineinfos.nim b/compiler/lineinfos.nim index 7adccd13d..121962014 100644 --- a/compiler/lineinfos.nim +++ b/compiler/lineinfos.nim @@ -240,8 +240,10 @@ type Severity* {.pure.} = enum ## VS Code only supports these three Hint, Warning, Error -const trackPosInvalidFileIdx* = FileIndex(-2) # special marker so that no suggestions - # are produced within comments and string literals +const + trackPosInvalidFileIdx* = FileIndex(-2) # special marker so that no suggestions + # are produced within comments and string literals + commandLineIdx* = FileIndex(-3) type MsgConfig* = object ## does not need to be stored in the incremental cache |