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

Python Path to Clipboard

by Mimino666 ALL

Copy the Python import path of the working file to clipboard. Plugin to Sublime Text 2.

Details

Installs

  • Total 1K
  • Win 683
  • Mac 204
  • Linux 220
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
Windows 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1
Mac 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
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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Python Path To Clipboard

Simple plugin to Sublime Text 2 editor to copy the Python import path of the working file to clipboard.

Install

The easiest way to install this is with Package Control.

Usage

To copy the Python import path of the working file press Ctrl+Shift+C or select an option from the context menu (right-click somewhere in the text area of the working file).

Note: to specify which files should be considered as “Python files” you can edit “python_extensions” variable in the settings.

Example

Suppose the following directory tree of your Python project:

x.py
A/
  __init__.py
  y.py
  B/
    __init__.py
    z.py

Depending on the current working file, the following paths will be stored in clipboard:

(current working file)  ->  (path copied to clipboard)

x.py                    ->  x
y.py                    ->  A.y
z.py                    ->  A.B.z
A/__init__.py           ->  A
A/B/__init__.py         ->  A.B