matason / emacs-open-github-from-here

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

open-github-from-here.el

Introduction

open-github-from-here is interface to open github file url from emacs, such as https://github.com/shibayu36/emacs-open-github-from-here/blob/development/open-github-from-here.el#L41..L57

Screenshot

Select region as following,

And M-x open-github-from-here

Then open github file URL

Requirements

  • system perl
  • git

Installation

You can install open-github-from-here.el from el-get.

Add following to your el-get-sources setting and execute M-x el-get-install open-github-from-here

(setq el-get-sources '( (:name open-github-from-here :type github :description "open github from here" :url "https://github.com/shibayu36/emacs-open-github-from-here") ))

You also install by not using el-get. git clone this repository to your emacs lisp directory.

$ git clone git://github.com/shibayu36/emacs-open-github-from-here.git path/to/dir

And add the directory to load-path.

(setq load-path
      (append
       (list
        (expand-file-name "path/to/dir"))
       load-path))

Commands

open-github-from-here.el provides following commands.

open-github-from-here

open github file url from select region.

About


Languages

Language:Emacs Lisp 76.2%Language:Perl 23.8%