summaryrefslogtreecommitdiff
path: root/lisp/init-git.el
AgeCommit message (Collapse)Author
2014-09-02Add magit-checkout-previous-branchKyle Meyer
2014-09-02Change Magit function docstringsKyle Meyer
Make the git line consistent with Magit.
2014-09-02Add magit-branch-and-checkout-from-currentKyle Meyer
Bind to 'c' in popup menu, and rebind magit-branch from 'c' to 'C'.
2014-09-02Reindent magit-define-pop-action callsKyle Meyer
2014-09-01Turn on view-mode after magit-find-fileKyle Meyer
2014-08-28Add file-map prefix commandKyle Meyer
This prefix will be used for find-file functions that don't already have a shorter keybinding. This commit adds two functions to the map, `view-file' and `magit-find-file', which both have an other-window analog in `ctl-x-4-map'. View mode can be accessed using ',v' right after finding a file, so the `view-file' binding might not be too useful. `magit-find-file' was in my magit-specific map, but it makes sense to have it here because it's useful in buffers outside the magit status buffer.
2014-08-27Remove '--track' from magit-branch-popup-defaultsKyle Meyer
2014-07-30Install git timemachineKyle Meyer
2014-07-23Add binding for magit-find-fileKyle Meyer
2014-07-23Add magit-find-file-other-window to ctl-x-4-mapKyle Meyer
2014-07-08Update magit-annex initializationKyle Meyer
2014-07-01Use Magit autoloadsKyle Meyer
2014-06-09Add km/magit-backup-branchKyle Meyer
2014-06-06Move diminish code to single fileKyle Meyer
2014-05-28Add km/magit-checkout-local-trackingKyle Meyer
2014-05-23magit: Add action for log of all branchesKyle Meyer
Remove '-all' flag from default log switches so that 'll' has the default behavior (log of current branch). Now 'la' shows the log for all branches (instead of 'l-A' or 'l A').
2014-05-08Space bindings for Magit switches and optionsKyle Meyer
https://github.com/magit/magit/pull/788/files
2014-04-20Autoload magit-blame-modeKyle Meyer
No longer automatic because I moved from MELPA version (708898b).
2014-04-15Remove obsolete magit customizationKyle Meyer
`magit-default-tracking-name-function' is no longer defined in the "next" branch.
2014-04-11Add magit-annex to magit-mode-hookKyle Meyer
2014-04-10Hide Magit popup helpKyle Meyer
2014-04-09Add --all to magit-log-popup-defaultsKyle Meyer
2014-04-09Switch to "next" branch of MagitKyle Meyer
2014-03-25Add push all to magit pushing menuKyle Meyer
2014-03-09Always follow vc symlinksKyle Meyer
2014-03-09Revert "Disable vc for git"Kyle Meyer
I disabled vc for git in b453a51 because I didn't think I used any features of vc and didn't see the point of it taking up space on the mode line. But now I'm missing the option to follow version-controlled symlinks, so I'm turning it back on.
2014-03-09Disable vc for gitKyle Meyer
2014-03-09Use diminish to shorten mode lineKyle Meyer
2014-02-07Load git-annex during initKyle Meyer
2014-01-26Use ido for completing read in magitKyle Meyer
2014-01-26Reorganize and use require-packageKyle Meyer
`require-package' is from https://github.com/purcell/emacs.d/blob/master/lisp/init-elpa.el.
2014-01-26Follow Purcell's emacs.d structureKyle Meyer
User init files are added using provide/require. https://github.com/purcell/emacs.d