summaryrefslogtreecommitdiff
path: root/init/km-magit.el
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2013-11-17 15:55:17 -0500
committerKyle Meyer <kyle@kyleam.com>2013-11-17 15:55:17 -0500
commit948a02ee75a6f1ed5af35359f5cccf0745f5b621 (patch)
tree7f9b7c78431819d4f2ef47631cd9f1c0df3fddaa /init/km-magit.el
parentcc157f1efe648aeb6ca9bcf63dd02454846894d3 (diff)
downloademacs.d-948a02ee75a6f1ed5af35359f5cccf0745f5b621.tar.gz
Load git-annex.el on start up
Forgot to require git-annex when I switched source to elpa
Diffstat (limited to 'init/km-magit.el')
-rw-r--r--init/km-magit.el27
1 files changed, 0 insertions, 27 deletions
diff --git a/init/km-magit.el b/init/km-magit.el
deleted file mode 100644
index aa1621b..0000000
--- a/init/km-magit.el
+++ /dev/null
@@ -1,27 +0,0 @@
-(require 'magit)
-
-(defun km/magit-auto-commit ()
- (interactive)
- (save-window-excursion
- (magit-with-refresh
- (shell-command "git --no-pager commit --all --message=auto"))))
-
-(define-key magit-status-mode-map (kbd "C-c C-u") 'km/magit-auto-commit)
-
-;; http://whattheemacsd.com/setup-magit.el-01.html
-(defadvice magit-status (around magit-fullscreen activate)
- (window-configuration-to-register :magit-fullscreen)
- ad-do-it
- (delete-other-windows))
-(defadvice magit-mode-quit-window (around magit-restore-screen activate)
- ad-do-it
- (jump-to-register :magit-fullscreen))
-
-;; http://whattheemacsd.com/setup-magit.el-05.html
-(defun km/magit-just-amend ()
- (interactive)
- (save-window-excursion
- (magit-with-refresh
- (shell-command "git --no-pager commit --amend --reuse-message=HEAD"))))
-
-(define-key magit-status-mode-map (kbd "C-c C-a") 'km/magit-just-amend)