ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Palette​File

by vshotarov ALL

A Sublime Text plugin to help with creating files and folders within projects with deep hierarchies quickly and easily.

Details

Installs

  • Total 503
  • Win 377
  • Mac 53
  • Linux 73
Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12 Mar 11 Mar 10 Mar 9 Mar 8 Mar 7 Mar 6
Windows 0 0 1 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1
Mac 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

PaletteFile

A Sublime Text plugin to provide file/folder creating functionality from the Command Palette with a hierarchical or flattened view of the project directories.

Currently tested on Windows and Linux.

If you would be interested in testing it on OSX, that would be much appreciated, so feel free to get in touch, but considering it is relying on basic os.path calls I am assuming it should work fine.

Sublime Text 3 PaletteFile demo - Creating files and folders from the Command Palette

Installation

The plugin is available on Package Control, so you can just fire up your command palette, go to Install package and type PaletteFile.

If you want to install it manually, you can navigate to your packages directory and clone the repo.

git clone https://github.com/vshotarov/PaletteFile.git

Usage

Fire up your command palette (Ctrl + Shift + P) and type Palette File to see all available actions.

The following four commands are provided, which can also be assigned to hotkeys in your key bindings file.

Command Title in command palette
new_file_in_project_tree PaletteFile: New file in project (tree)
new_folder_in_project_tree PaletteFile: New folder in project (tree)
new_file_in_project_flat PaletteFile: New file in project (flat)
new_folder_in_project_flat PaletteFile: New folder in project (flat)

The tree options will let you traverse your project's hierarchy up and down until you find the desired location of your new file/folder. Because all this is happening inside of the Command Palette you can take advantage of the excellent fuzzy searching support in Sublime. Once you accept a directory, the input panel pops up asking for you to type the name.

The flat options presents you with a flattened version of your project hierarchy, where you can start typing the relative directory you want to create your file/folder in and quickly reach it. Similar to the tree option, once a choice has been made, the input panel pops up asking for a name.

Settings

The following four settings are available:

  • parent_directory_command - The title of the command for going UP a level when traversing the tree. The default is ...
  • this_directory_command - The title of the command for choosing the current directory when traversing the tree. The default is <here>.
  • top_level_message - The message underneath the title of the command for going UP in the hierarchy, if the parent directory is the project's top level folders. The default is Current top level folders.
  • flat_exclude_folders - Folders to be excluded in the flattened lists of directories. The default is [".git", "venv"].

Issues and contributing

If you find any issues with the plugin please feel free to open an issue or get in touch with me.

Better yet, if you are keen on fixing problems yourself, feel free to submit a pull request.