github ability has been added

This commit is contained in:
Sameer Rahmani 2018-10-04 15:52:41 +01:00
parent 4294a84e91
commit 4d72c51bdd
2 changed files with 9 additions and 4 deletions

View File

@ -30,7 +30,9 @@
(with-ability git
(depends-on 'diff-hl)
(depends-on 'magit)
(depends-on 'magit))
(with-ability github
(depends-on 'magithub))
(with-ability focus

View File

@ -91,7 +91,7 @@
(setq imenu-list-auto-resize t)
(global-set-key (kbd "C-'") #'imenu-list-smart-toggle)
(global-set-key (kbd "C-<f2>") #'imenu-anywhere))
(global-set-key (kbd "<f13>") #'imenu-anywhere)
(global-set-key (kbd "<f13>") #'imenu-anywhere)
(ability parinfer ()
@ -123,14 +123,17 @@
(ability git ()
"A wonderful git interface for FG42"
(require 'magithub)
(magithub-feature-autoinject t)
(cheatsheet-add :group '--Development--
:key "C-x g"
:description "Rise up MAGIT. Git interface for FG42")
(global-set-key (kbd "C-x g") 'magit-status))
(ability github ()
"Github support"
(require 'magithub)
(magithub-feature-autoinject t))
;; (ability hl ()
;; "Highligh the current block of code. This ability may slows you down."
;; (require 'hl-sexp)