Files
.emacs.d/modules/navigation/siren-helm-open-github.el
Jim Myhrberg 87a86191db Majorly re-organize modules
- Split large modules into smaller parts (e.g. siren-text-manipulation)
- Organize modules into high level groups:
  - completion
  - core
  - editor
  - languages
  - linting
  - misc
  - navigation
  - projects
  - spelling
  - text-editing
  - version-control
  - windows
  - workspaces
2018-05-20 17:31:11 +01:00

23 lines
540 B
EmacsLisp

;;; siren-helm-open-github.el --- jimeh's Emacs Siren: helm-open-github configuration.
;;; Commentary:
;; Basic configuration for helm-open-github.
;;; Code:
(require 'siren-helm)
(use-package helm-open-github
:bind
("C-c o f" . helm-open-github-from-file)
("C-c o c" . helm-open-github-from-commit)
("C-c o i" . helm-open-github-from-issues)
("C-c o p" . helm-open-github-from-pull-requests)
:config
(setq helm-open-github-commit-limit 10000))
(provide 'siren-helm-open-github)
;;; siren-helm-open-github.el ends here