Kin

Results 1 comments of Kin

I took a look and modified matchinfo.ps1 as follow. ``` function MatchInfo { param ( [Parameter(Mandatory=$True,Position=1)] $match ) $contextStartLineNumber = $match.LineNumber - $match.Context.DisplayPreContext.Length $relPath = $match.RelativePath($pwd) foreach ($contextLine in $match.Context.DisplayPreContext)...