Making the creation of a new file even easier. Specify the name of the file on creation and if you define a path that doesn't exist yet the folders will be created. Before using the extension please make sure to read the Disclaimer.
Inspired by Scott Kuroda's AdvancedNewFile for Sublime.
-
a) Press the Shortcut Cmd+Alt+N or run the
Files: Advanced New File
command. -
b) Right click in the explorer menu and choose 'Advanced New File'.
-
Enter a relative file path or stick with the default. If you have a file open it will guess the extension based on the current extension.
-
An empty file will be created and the cursor will be placed into the new file.
-
Happy Coding! :)
You can configure the default behavior through various settings in your settings.json
:
{
"newFile.defaultBaseFileName": "newFile",
"newFile.relativeTo": "file", // "root" or "project"
"newFile.defaultFileExtension": ".ts",
"newFile.rootDirectory": "~",
"newFile.showPathRelativeTo": "root", // "project" or "none"
"newFile.expandBraces": false // setting to true will allow for creating multiple files such as `new-folder/{file1,file2}.js`
}
You can also set a new keyboard shortcut for the command in keybindings.json
:
[
{
"key": "cmd+n",
"command": "newFile.createNewFile"
}
]
- Download source code and install dependencies
git clone git@github.com:dkundel/vscode-new-file.git
cd vscode-new-file
npm install
code .
- Make the respective code changes.
- Go to the debugger in VS Code, choose
Launch Extension
and click run. You can test your changes. - Choose
Launch Tests
to run the tests. - Submit a PR.
- Add additional tests
Important: This extension due to the nature of it's purpose will create files on your hard drive and if necessary create the respective folder structure. While it should not override any files during this process, I'm not giving any guarantees or take any responsibility in case of lost data.
MIT