Skip to content

Commit e0456f0

Browse files
committed
File Explorer: Allow opening of symlinks (#212)
Closes #211 Signed-off-by: Tyler Smalley <[email protected]> (cherry picked from commit 75112f7)
1 parent d965ca5 commit e0456f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node-explorer-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ export class FileExplorer extends vscode.TreeItem {
683683
) {
684684
super(label, collapsibleState);
685685

686-
if (type === vscode.FileType.File) {
686+
if (type === vscode.FileType.File || vscode.FileType.SymbolicLink) {
687687
this.command = {
688688
command: 'vscode.open',
689689
title: 'Open File',

0 commit comments

Comments
 (0)