- Adds an
advancedNewFile.expandBraces
configuration option to expand braces in filepath to create and open multiple files:/path/to/file.{tsx,spec.tsx} => [/path/to/file.tsx, /path/to/file.spec.tsx]
- Revert change from glob to globby to fix regressions
- Faster glob searching for big projects
- Update
vscode
devDependency to addresshoek
CVE warning
- Open new document in active pane
- Control the order of top convenient options ("last selection", "current file",
etc) via config setting
advancedNewFile.convenienceOptions
- In multi-root workspaces, order roots by recency
- Support for multi-root workspaces
- Dropped support for VS Code versions < 1.16.0 (August 2017) so we can use Node 7.6+, enabling a large refactor to use async/await
- Adds an
advancedNewFile.showInformationMessages
configuration option to control whether top-bar notifications display. Enabled by default.
- Adds an
advancedNewFile.exclude
configuration option in case you want the plugin to ignore a set of directories that aren't ignored in your workspacefiles.exclude
config or.gitignore
- Add some "quick picks" to the top of the directory list: last selection, dir of currently open file, workspace root.
- Fix a crash on Windows when the project directory is on a different drive than the VS Code installation.
- Fixes keyboard shortcut on Mac. Formerly we hacked around a VS Code issue in order to get the desired keyboard shortcut, but that issue has been fixed in latest VS Code. NOTE: This may introduce keyboard shortcut issues in earlier versions of VS Code (< 1.11.1)
- Fix an issue causing a stack level too deep error on Windows
- Create a directory instead of a file by suffixing the file path with
/
(thanks to maximilianschmitt)
- Show quickpick immediately while we wait for directories to load; helpful on large projects where loading may take a while
- Added a CHANGELOG
- Honor gitignores located above workspace root
- Added Travis.ci for Mac and Linux testing, AppVeyor for Windows testing
- Added TSLint and filled some typedef gaps
- Ignore directories specified in VSCode setting files.exclude
- Fix an issue where nested gitignored directories weren't being excluded
- Full suite of unit and integration tests
- Fix Windows support
- Make instructional copy for directory selection step more clear