How can I make external script output link to code in Visual Studio?
        Posted  
        
            by JoelFan
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by JoelFan
        
        
        
        Published on 2010-05-03T17:17:05Z
        Indexed on 
            2010/05/04
            14:48 UTC
        
        
        Read the original article
        Hit count: 228
        
visual-studio
|perl
I sometimes need to search code for patterns in a way that goes beyond the regex capabilities of Visual Studio (e.g. patterns that depend on what was seen previously in the file or on the contents of other files). So I use Perl to analyze the source and output matching lines, along with the file name and line number.
Since this is the exact same format as is produced by the search feature of Visual Studio, I wonder if there is a way to duplicate the functionality where I can double-click on a line and it will display that line in context in Visual Studio. Any ideas?
© Stack Overflow or respective owner