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 681
  • Mac 203
  • Linux 220
Dec 3 Dec 2 Dec 1 Nov 30 Nov 29 Nov 28 Nov 27 Nov 26 Nov 25 Nov 24 Nov 23 Nov 22 Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20
Windows 0 1 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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
Mac 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 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 1 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