Skip to content

emacsorphanage/helm-open-github

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

helm-open-github.el melpa badge melpa stable badge

helm-open-github.el is utilities for opening github url. This is inspired by URL below.

Screenshot

open-github-from-commit

Installation

You can install helm-open-github from MELPA with package.el.

 M-x package-install helm-open-github

Dependency

  • Emacs 24.3 or higher
  • helm
  • gh

Basic Usage

helm-open-github-from-commit

Open commit page from Commit ID

helm-open-github-from-file

Open file page from File Name

helm-open-github-from-issues

Open issue page from Issue ID

helm-open-github-from-pull-requests

Open pull request page from Pull Request ID

Customize

helm-open-github-commit-limit

Issue number shown by helm-open-github-from-commit.(Default: 100)

helm-open-github-requires-pattern

Minimal length to search. If this value is non-nil, delayed search is enabled(Default: nil). This parameter must be set before loading helm-open-github.el.

Sample Configuration

(global-set-key (kbd "C-c o f") 'helm-open-github-from-file)
(global-set-key (kbd "C-c o c") 'helm-open-github-from-commit)
(global-set-key (kbd "C-c o i") 'helm-open-github-from-issues)
(global-set-key (kbd "C-c o p") 'helm-open-github-from-pull-requests)