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 655
  • Mac 316
  • Linux 201
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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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
Mac 0 1 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
Linux 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 1 0 1 0 0 0 0 0 0 0 0 0 1 0 0 1 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"},
  # ...
]