jumpToFile function defined in quickfix.lua uses the golang function func Split(str, sep string) []string for parsing the file name on the current line in pane.
In example in line 166 in source: plainfname = strings.Split(fname, ":")[1]
Howerever there are cases where the multiple delimiters are needed.
/home/master/Documents/csharp/Example/Program.cs(10,13): error CS0246: The type or namespace name 'striing' could not be found (are you missing a using directive or an assembly reference?) [/home/master/Documents/csharp/Example/Example.csproj]
The above example contains (, ,, ), : instead of plain :
jumpToFilefunction defined in quickfix.lua uses the golang functionfunc Split(str, sep string) []stringfor parsing the file name on the current line in pane.In example in line 166 in source:
plainfname = strings.Split(fname, ":")[1]Howerever there are cases where the multiple delimiters are needed.
/home/master/Documents/csharp/Example/Program.cs(10,13): error CS0246: The type or namespace name 'striing' could not be found (are you missing a using directive or an assembly reference?) [/home/master/Documents/csharp/Example/Example.csproj]The above example contains
(,,,),:instead of plain: