"autolink.queries": [
{
"linkPattern": "github#(\\d{1,6})",// RegExp. Will match `github#202` text
"linkText": "https://github.com/Microsoft/vscode/issues/${0}",// will replace `${0}` with matched group
},
{
"linkPattern": "this#(\\d{1,6})",// RegExp. Will redirect `this#1` to `https://github.com/usernamehw/vscode-autolink/issues/1`
// will replace `${0}` with matched group
// will replace `${workspaceFolderBasename}` with opened folder basename
"linkText": "https://github.com/usernamehw/${workspaceFolderBasename}/issues/${0}",
},
],