Skip to content

Commit

Permalink
fix file link detection (#1208), tweak URL detection (#1209)
Browse files Browse the repository at this point in the history
  • Loading branch information
mintty committed Apr 11, 2023
1 parent eeaaed8 commit fe93a69
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/termmouse.c
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static char scheme = 0;
else if (c == '/') {
scheme = '/';
}
else if (scheme)
else if (scheme == 's') // #1209 / #1208
break;
else
scheme = 0;
Expand Down
3 changes: 3 additions & 0 deletions wiki/Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Terminal features
* Fix file link detection (#1208), tweak URL detection (#1209).

### 3.6.4 (25 Mar 2023) ###

Terminal features
Expand Down

0 comments on commit fe93a69

Please sign in to comment.