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

Non Text Files

by bordaigorl ALL

Sublime Text plugin to open files with external apps and prevent preview of binary files

Details

Installs

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

Readme

Source
raw.​githubusercontent.​com

Non-Text-Files Sublime Text plugin

Sometimes it would be more useful if Sublime Text launched the default application for certain file types instead of displaying it in the editor. For example, if you open a PDF from the Sublime Text sidebar, the incomprehensible stream of compressed data is most often not what you intended to view. Instead you would like to view the document using your default viewer, be it Acrobat or Evince or any other.

This plugin offers settings and commands to control when Sublime should open certain files with external applications.

There is an option to turn off previews for binary files and options to open files with their default external applications.

If you like this plugin and would like to support its development please consider donating through a paypal donation.

Changelog

v1.3

  • “Open Externally” should now handle right click on sidebar correctly (fixes #2)

v1.2

  • multiple matching patterns do not trigger open multiple times
  • double click behaviour is now more stable and predictable
  • preview closing is more reliable

Installation

  1. Install Sublime Text

  2. Install the plugin either:

  3. Customise the open_externally_patterns setting in your preferences (Preferences > Settings - User)

Features and settings

Prevent Binary File Preview

When the setting prevent_bin_preview is set to true (default), clicking on a file matching any of the binary_file_patterns would not open the file. Double click will open it normally: this is useful when using plugins like Hex​Viewer or Zip Browser.

The prevent_bin_preview settings can be set globally in the User/Preferences.sublime-settings file or locally to a project.

Open files with external applications

Sometimes it would be more useful if Sublime Text launched the default application for certain file types instead of displaying it in the editor. This plugin allows you to do that via a special option: the files matching any of the open_externally_patterns will be opened with the default application as configured in your OS instead of using Sublime. You can set it globally in the User/Preferences.sublime-settings file or locally to a project. This setting follows the same syntax of the binary_file_patterns setting: it is just a list of glob patterns. An example:

"open_externally_patterns": [
    "*.jpg",
    "*.jpeg",
    "*.png",
    "*.gif",
    "*.zip",
    "*.pdf"
]

The plugin also offers a window command open_externally that opens a file with the default application. It takes two optional arguments:

  • path is the path of the file to be opened; if empty the file of the current view will be opened;
  • then_close if true will close the view after opening the file.

You can bind this command to a shortcut by adding the following to your keymap:

{
  "keys": ["super+enter"], "command": "open_externally",
  "args": {"then_close": false}
}