Skip to content

Commit 3aa45c3

Browse files
authoredApr 20, 2017
Merge pull request Guake#934 from denis-gonzo/denis-gonzo-patch-1
Quick Open does not work with dashes fix Guake#576
2 parents 957a42c + 02b2180 commit 3aa45c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/guake/terminal.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
r"^\s\sFile\s\".*\",\sline\s[0-9]+",
7272
r"^\s\sFile\s\"(.*)\",\sline\s([0-9]+)"),
7373
("line starts by 'Filename:line' pattern (GCC/make). File path should exists.",
74-
r"^[a-zA-Z0-9\/\_\-\.\ ]+\.?[a-zA-Z0-9]+\:[0-9]+",
74+
r"^[-a-zA-Z0-9\/\_\.\ ]+\.?[a-zA-Z0-9]+\:[0-9]+",
7575
r"^(.*)\:([0-9]+)"),
7676
("line containing '/home/' absolute path",
7777
r"(/home/[a-zA-Z0-9_\-\./]+)(:[0-9]+)?",

0 commit comments

Comments
 (0)
Please sign in to comment.