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

File​Header

by shiyanhui ALL

A powerful file templating plugin for Sublime Text

Details

Installs

  • Total 48K
  • Win 31K
  • Mac 10K
  • Linux 7K
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 Mar 5 Mar 4 Mar 3 Mar 2 Mar 1 Feb 29 Feb 28 Feb 27 Feb 26 Feb 25 Feb 24 Feb 23 Feb 22 Feb 21 Feb 20 Feb 19 Feb 18 Feb 17 Feb 16 Feb 15 Feb 14 Feb 13
Windows 0 1 1 2 4 1 1 1 2 3 0 3 3 1 1 2 0 6 0 0 1 3 1 6 5 1 1 1 2 1 0 0 0 0 0 0 4 4 1 3 1 1 1 0 1 1
Mac 0 0 0 0 0 0 0 0 0 2 4 0 0 0 0 0 1 0 2 1 0 0 0 0 1 0 0 0 2 0 0 1 0 0 0 0 1 0 2 1 0 0 0 1 1 0
Linux 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 3 0 1 0 0 2 0 0 0 0 0 2 0 0 1 0 0 0 0 0 0 0 2 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

FileHeader

FileHeader is a powerful file templating plugin for SublimeText 2 and SublimeText 3. It makes it easier to create new file with initial contents. It also can add new header to an existed file or directory.

Features

  • Add new file with initial contents.
  • Auto detect New File action from SulimeText or other plugin.
  • Add header to an existed file or directory.
  • Batch add header to files in the specified directory.
  • Auto update file last modified time and last modified by.
  • Auto detect file type.
  • Powerful template with Jinja2.
  • Custom templates supported.
  • Rich languages supported.
  • Support both Sublime Text 2 and Sublime Text 3.

Installation

Package Control

Install Package Control. Then Package Control: Install Package, look for FileHeader and install it.

Source Installation

Go to the "Packages" directory (Preferences / Browse Packages). Then clone this repository:

git clone git@github.com:shiyanhui/FileHeader.git

Or download zip from Github, and put it in "Packages" directory (Preferences / Browse Packages).

Usage

Create a new file

  • Sidebar Menu

    /readmes/img/77b62694139973c3414057fdbc2fead80e8a7382.gif
  • Shortcuts

    The default shortcuts is super+alt+n on OS X, ctrl+alt+n on Windows and Linux.

  • Context Menu

    Similar to Sidebar Menu.

Add header to an existed file

  • Sidebar Menu

    /readmes/img/adb25e4b563e1b789042357df7999158f969f60b.gif
  • Shortcuts

    The default shortcuts is super+alt+a on OS X, ctrl+alt+a on Windows and Linux.

  • Context Menu

    Similar to Sidebar Menu.

Add header to files in the specified directory

  • Sidebar Menu

    /readmes/img/3e8c14b930401ee33f14976e99ef12514553334b.gif

A very important feature of FileHeader is that it can automatically update last_modified_time and last_modified_by (see options below). Just look this picture, take care of the @Last modified time: before save and after save:

/readmes/img/4992bcc1e89e20c5ce4448ab33ea07cc49e61c0c.gif

Settings

There are two kinds of arguments: options and kinds of languages variables settings. options is the functional setting, Default is the default language variables settings. Language variables setting will cover that in Default.

Open Preferences => Package Settings => File Header => Settings - Default for more details.

Template

FileHeader use Jinja2 template, find out how to use it here.

The template is made up of header and body. You also can write you own templates. Take the Python template header Python.tmpl for example.

{{ }} is variable, you can set it in setting files. create_time will be set when you create a new file using FileHeader, last_modified_time and last_modified_by will be update every time you save your file.

You can define your functions and classes or other contents in your body file. Also take Python template body for example.

class MyClass(object):
    pass

if __name__ == '__main__':
    pass

FAQ

  • How to customize my headers?

    Set custom_template_header_path to your path of customized header in user-settings, for example, ~/header/

    NOTE: DO NOT modify directly that in Packages/FileHeader

  • What if FileHeader conflicts with other file template plugin?

    For example, FileHeader and Javatar conflicts in files with extension .java.

    The solution is, open any file with extension .java in sublime text, and open Preferences ==> Settings - More ==> Syntax Specific - User, then add "enable_add_template_to_empty_file": false.

  • What if key-map of FileHeader conflicts with others?

    Just change that of FileHeader or others.

Other Editors

If you have any questions, please let me know. 🙂