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

Open​Context​Path

by mheinzler ALL

Sublime Text plugin to open file paths at the current cursor position

Details

Installs

  • Total 833
  • Win 488
  • Mac 176
  • Linux 169
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 1 0 0 0 0 1 1 1 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
Mac 0 0 0 0 0 1 0 0 0 1 0 1 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 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 0 0 0 0 0 0 0 0 1 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

OpenContextPath

This Sublime Text package allows you to quickly open files and folders from anywhere within a text (e.g. a file, the build panel, etc.) by simply using the context menu or a keyboard shortcut.

For example:

Example usage

Installation

Package Control

The easiest way to install is using Sublime Text's Package Control:

  • Open the Command Palette using the menu item ToolsCommand Palette…
  • Choose Package Control: Install Package
  • Install OpenContextPath

Download

  • Download a release
  • Extract the package and rename it to OpenContextPath
  • Copy the package into your Packages directory. You can find this using the menu item PreferencesBrowse Packages….

Usage

There are multiple ways to open paths:

  • Open the context menu on a path and choose “Open file
  • Position the cursor within a path and press Ctrl+Shift+O (macOS: +Shift+O)
    • With this it is also possible to open many paths at the same time by using multiple selections

This works for both absolute and relative paths. See the “directories” configuration option to specify which directories to search for relative paths.

Configuration

To overwrite any of the default settings use the menu item PreferencesPackage SettingsOpenContextPath. There you can also find the default keyboard bindings and an example for mouse bindings.

It is also possible to use project-specific settings which take precedence over the global settings. For that, you must add “open_context_path” to the “settings” key. Your project file should look similar to the following example:

{
    "settings": {
        "open_context_path": {
            "directories": [
                "project-specific-directory"
            ]
        }
    }
}

Settings

directories

This is a list of directories to search when processing relative paths. If you want to be able to open files from a text that only includes their names or a part of their path, add the directory that contains them here.

These directories can also be relative paths. In this case they are relative to the folder the current project file is located in.

Specifying too many directories here can possibly lead to noticeable delays.

Variables of the form $varname and ${varname} will be expanded. This includes Sublime Text variables and environment variables. This uses the expand_variables API so other features like placeholders (${varname:placeholder}) are also supported.

A literal $ character needs to be escaped as \\$.

patterns

These regex patterns are used to match line and column numbers in the text after a path to make it possible to open a file at the specified position. They must be matched by the named groups line and col respectively.

For example, the default patterns match the line and column numbers in the text path:line:column with the following regex (the column number is optional):

":(?P<line>\\d+)(?::(?P<col>\\d+))?"

context

This is the number of characters that will be searched in both directions around the cursor to find a path. Increasing this number makes it possible to find longer paths but will also significantly increase the amount of time it takes to find a path.

The default value should be good enough to detect most paths and not produce any noticeable delays.