├── .gitignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── imgs ├── icon.png └── preview.gif ├── package.json ├── src ├── FileManager.ts ├── FileStat.ts ├── FileSystemProvider.ts ├── Fuzzy.ts ├── QuickPick.ts ├── extension.ts └── test │ ├── extension.test.ts │ └── index.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/README.md -------------------------------------------------------------------------------- /imgs/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/imgs/icon.png -------------------------------------------------------------------------------- /imgs/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/imgs/preview.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/package.json -------------------------------------------------------------------------------- /src/FileManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/src/FileManager.ts -------------------------------------------------------------------------------- /src/FileStat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/src/FileStat.ts -------------------------------------------------------------------------------- /src/FileSystemProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/src/FileSystemProvider.ts -------------------------------------------------------------------------------- /src/Fuzzy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/src/Fuzzy.ts -------------------------------------------------------------------------------- /src/QuickPick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/src/QuickPick.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/src/test/extension.test.ts -------------------------------------------------------------------------------- /src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/src/test/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fayras/vscode-simple-new-file/HEAD/tsconfig.json --------------------------------------------------------------------------------