spacemacs/contrib/!source-control/github/config.el
syl20bnr 9507684b27 Prefix command names need to be unique
This commit only fix some of the non unique occurences.
We need some way to detect duplicates and warn the user about them.
2015-08-31 16:21:46 -04:00

19 lines
565 B
EmacsLisp

;;; config.el --- Github configuration File for Spacemacs
;;
;; Copyright (c) 2012-2014 Sylvain Benner
;; Copyright (c) 2014-2015 Sylvain Benner & Contributors
;;
;; Author: Sylvain Benner <sylvain.benner@gmail.com>
;; URL: https://github.com/syl20bnr/spacemacs
;;
;; This file is not part of GNU Emacs.
;;
;;; License: GPLv3
;; Command prefixes
(setq github/key-binding-prefixes '(("gf" . "github/file")
("gg" . "githib/gist")))
(mapc (lambda (x) (spacemacs/declare-prefix (car x) (cdr x)))
github/key-binding-prefixes)