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 510
  • Win 380
  • Mac 54
  • Linux 76
Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13
Windows 0 0 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 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 0 0 0 0 0 0 0 0 0 0 0 0 1 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.