Plugins for Sublime Text 3

Discover how to supercharge your text editor with Sublime Text 3 plugins! Example: Emmet, a plugin that helps you write HTML & CSS faster.

Sublime Text 3 is an advanced text editor for developers, and there are lots of great plugins available to extend its features.

Example Plugin: SideBarEnhancements

One of the most useful plugins for Sublime Text 3 is SideBarEnhancements. It adds lots of useful features to the side bar, making it easier to manage files and folders. It adds the ability to create new files and folders, rename and move files, open a terminal window, and more.

The plugin also adds a set of right-click context menu options to the side bar. This makes it easy to perform common tasks like duplicating files, creating new files, and setting a file's syntax.


// Context menu options
[
    {
        // Create a new file
        "caption": "New File",
        "id": "new_file"
    },
    {
        // Duplicate a file
        "caption": "Duplicate File",
        "id": "duplicate_file"
    },
    {
        // Set the syntax of a file
        "caption": "Set Syntax",
        "id": "set_syntax"
    }
]

SideBarEnhancements also adds a set of keyboard shortcuts for common tasks. This makes it even easier to manage files and folders from the side bar.


// Keyboard shortcuts
[
    // Create a new file
    {
        "keys": ["super+alt+n"],
        "command": "side_bar_new_file"
    },

    // Duplicate a file
    {
        "keys": ["super+alt+d"],
        "command": "side_bar_duplicate"
    },

    // Set the syntax of a file
    {
        "keys": ["super+alt+y"],
        "command": "side_bar_set_syntax"
    }
]

SideBarEnhancements is a great plugin for Sublime Text 3, and it makes managing files and folders much easier. It adds lots of useful features and keyboard shortcuts to the side bar, making it faster and easier to perform common tasks.

Answers (0)