Skip to content
Snippets Groups Projects

feat: show markdown help for missing token

1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
+ 6
0
import * as path from 'path';
import * as vscode from 'vscode';
interface UriOptions {
@@ -81,4 +82,9 @@ export class Uri implements vscode.Uri {
fragment: '',
});
}
static joinPath(base: Uri, ...pathSegments: string[]): Uri {
const { path: p, ...rest } = base;
return new this({ ...rest, path: path.join(p, ...pathSegments) })
}
}
Loading