Metadata-Version: 2.1
Name: repo-link
Version: 0.1
Summary: Open github links in your editor
Home-page: https://github.com/Tadaboody/repo_link
Author: Tomer Keren
Author-email: tomer.keren.dev@gmail.com
License: MIT
Description: # Repo Link
        [![Build Status](https://travis-ci.com/Tadaboody/repo_link.svg?branch=master)](https://travis-ci.com/Tadaboody/repo_link) !
        ---
        Open github links inside your favorite editor
        
        Automatically runs `clone`, `checkout`, and opens the correct line for you!
        ## Installation
        Install by running
        ```sh
        pip install repo_link
        ```
        ## Usage:
        ```sh
            repo_link https://github.com/Tadaboody/repo_link/blob/master/repo_link/repo_link.py#L24
        ```
        ```sh
        usage: repo_link [-h] [--parents PARENTS [PARENTS ...]] [--editor EDITOR]
                         [--config CONFIG]
                         link
        
        Open github link in editor
        
        positional arguments:
          link                  The opened link
        
        optional arguments:
          -h, --help            show this help message and exit
          --parents PARENTS [PARENTS ...]
                                Directories where the repository will be searched. if
                                not found it will be cloned into the first one
          --editor EDITOR       The editor opened (default: EDITOR)
          --config CONFIG       A json file where command line options can be hard-
                                coded, default:~/.repo_link_config.json
        ```
        A config json can be given, it will look like this
        ```js
        {
            "editor":"vim",
            "parents":["~/Forks","~"]
        }
        ```
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
