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

Smart Path Copy

by santi-h ALL

Sublime package to build and send commands to clipboard depending on file.

Labels clipboard, copy, path

Details

Installs

  • Total 1K
  • Win 651
  • Mac 311
  • Linux 194
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
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 2 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 1 0
Mac 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 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

SmartPathCopy (Sublime Text 2/3 plugin)

When you head over to the console right after making some changes to a file, chances are that the command you will run is related to the file you were just looking at, and the type of the command will depend on the type of the file.

For example, if you're making changes to path/to/test.rb, chances are you're going to run a command to run the tests in path/to/test.rb.

Similarly, if you're writing a migration on rails like db/migrate/20150406132142_add_authentication_token_to_users.rb, chances are that when you head over to the console, you just want to run either rake db:migrate or rake db:migrate:up VERSION=20170213214913

Case scenario

You're in the zone developing and writing tests like it's nobody's business. You think your test is ready and want to quickly run it, but you don't have a TDD mechanism in place or you haven't started it. You head over to the console to run the test. You start typing rspec and realized that you forgot the path to the spec file, so you go back to sublime to Copy Path. While you're at it you look at the line number the test you want to run is on, so you can specify it as part of the rspec command. You go back to the console and you're finally ready to run rspec path/to/file:line_number

All this process takes you out of the zone. So far away from it that the zone looks like a tiny dot from where you're at now.

With SmartPathCopy, all you need to do is hit super+shift+c and boom, rspec path/to/file:line_number copied to the clipboard and ready to run from the console.

You could use the RSpec sublime package, which works fine until you put a binding.pry somewhere, which you will. So now you have to go back to the console and run it from there anyways. If you forget to continue or kill the spec in the console, every test you run in sublime with RSpec will hang. Hopefully some day RSpec will support pry, until then I'll stick to the console.

Installation

Recommended way is using PackageControl package.

Usage

Hit super+shift+c to send the relevant command to the clipboard. By default it will build the following commands: - For files ending in _spec.rb: rspec <file>:<line_number> - For files in db/migrate: rake db:migrate:up VERSION=<migration_version> - For files in lib/tasks: rake <task_name>

Configuration

The default configuration is:

{
  "smart_path_copy_default_rules": [
    ["_spec\\.rb$",                     "rspec $filepath:$line_number"  ],
    ["db/migrate/(\\d+)[^\\/]+\\.rb$",  "rake db:migrate:up VERSION=$1" ],
    ["lib/tasks/([^\\/]+)\\.rake$",     "rake $1"                       ]
  ]
}

Each element in the "smart_path_copy_default_rules" list consists of a regex expression and a command. The regex expression serves as a condition: If the file you're currently on satifies the condition (regex), then the command next to it will be copied to the clipboard when you hit super+shift+c.

If no condition is satisfied, the whole path of the current file is copied to the clipboard.

The default configuration is useful if you're developing in rails, but you can add your own configuration in Sublime Text > Preferences > Settings. If you want to override the default configuration, just add your own "smart_path_copy_default_rules". If you want to keep the default configuration and add rules on top of it, use "smart_path_copy_user_rules".

Notice that you can add groups in the regexes and use them (as $<group_number>) in the command.

You can also use in the command section: - $filepath: absolute file path of the current file. - $line_number: line number the cursor is on.

The default shortcut is super+shift+c, but you can modify it from Sublime Text > Preferences > Key Bindings. For example, if you want the shortcut to be super+shift+h, you will add:

[
  # ...
  { "keys": ["super+shift+h"], "command": "smart_path_copy"},
  # ...
]