summaryrefslogtreecommitdiff
path: root/lisp/init-git.el
AgeCommit message (Collapse)Author
2015-06-29Update for renamed Magit variableKyle Meyer
2015-06-26Update Magit load pathKyle Meyer
Files are in lisp subdirectory as of Magit commit 51eb8bb42f45237.
2015-06-10Use custom avy-goto-subword-1 for all bindingsKyle Meyer
Only changed main binding in f88d106fc3.
2015-06-08Add git-shorten-hash-at-point commandKyle Meyer
2015-06-08Merge show-commit-under-point commandsKyle Meyer
Use a prefix argument instead of having separate commands for switching projects.
2015-05-31Add binding for magit-log-buffer-fileKyle Meyer
2015-05-29Use avy instead of ace-jump-modeKyle Meyer
2015-05-29Replace all magit-get-top-dir with magit-toplevelKyle Meyer
Should have replaced in bf1bacdf8fd3137172588c17a58336ecfd0ba81f.
2015-05-23Use magit-toplevel instead of magit-get-top-dirKyle Meyer
Magit commit 1ff241b719 removed magit-get-top-dir.
2015-05-23Remove reference to obsolete magit-backup-modeKyle Meyer
Removed in Magit 3026b56182c.
2015-05-21Set magit-revert-buffersKyle Meyer
2015-05-10Magit: Add commands for checking out recent refsKyle Meyer
2015-05-10Add command magit-checkout-fileKyle Meyer
2015-04-24Add every git commit message to ringKyle Meyer
https://github.com/magit/magit/issues/1677
2015-04-18Set magit-annex-unused-open-function to org-open-fileKyle Meyer
2015-03-27Add command magit-insert-staged-fileKyle Meyer
2015-03-25Reorganize magit-define-popup-action callsKyle Meyer
2015-03-25Add magit-delete-previous-branch commandKyle Meyer
2015-03-10Remove km/magit-log-all-branches actionKyle Meyer
A similar action was added to Magit in a471cfb94c762a714570a86a75004770fb6214c3.
2015-03-10Switch from ido to helmKyle Meyer
2015-02-28Activate magit-patch-popup with prefixKyle Meyer
2015-02-28Add command magit-pin-fileKyle Meyer
2015-02-15Add command magit-log-select-guess-fixup-commitKyle Meyer
2015-02-02Don't read revision for magit-log-all-branchesKyle Meyer
A revision doesn't make sense because the '--all' flag is being passed.
2015-02-02Rework key chordsKyle Meyer
- Use letter pairs that are rare in both directions. For really common commands, try to keep my fingers on home row. - Remove some key chords for less frequent commands. For Projectile, just bind switching projects and the commander because most other things are available with one more key from the commander. My strategy for key chord bindings was to lead with ',' or ';' and then follow with any letter. The idea was that, with the languages and coding conventions I was using at the time, when I inserted a comma or semicolon, they were usually followed by a non-letter (typically a space or a new line). But, this is actually not a good way to go about this because Key chord mode accepts the two-letter combination in either order. In practice, I didn't end up unintentionally calling a command too often, but it did happen enough to be slightly annoying. John Cook recently posted a table [1] of bigram frequencies, which is a good starting point for updating my key chords. [1]: http://www.johndcook.com/blog/2015/02/01/rare-bigrams/
2015-01-31Update for renamed Magit commandKyle Meyer
Magit commit a44ed1b9c3b0ffa09b988cb8305da0105e4702ea
2015-01-29Use hook for fullscreen MagitKyle Meyer
2015-01-27Improve organization and consistency of filesKyle Meyer
- Add pages and more headings for large files. - Try to use consistent order for file (or page) structure. * Loading * Settings * Hooks * Any mode activation or function calls * My functions * Key bindings
2015-01-13Bind ace-jump in magit-cherry-modeKyle Meyer
2015-01-07Fix some docstringsKyle Meyer
2015-01-04Bind ace-jump to 'j' in magit-{refs,log}-mode-mapKyle Meyer
2014-12-30Add display-only version of git-rebase-show-commitKyle Meyer
Bind this version to SPC. This is more consistent with behavior in the log buffer, where RET shows the commit and switches to that buffer and SPC just displays the commit. However, the SPC variants still differ in their scrolling behavior. In the log buffer, SPC (magit-diff-show-or-scroll-up) will scroll if the buffer is already displayed, but km/git-rebase-show-commit doesn't support this. While it'd be nice to use magit-diff-show-or-scroll-up directly, this isn't easy to do because magit-diff-show-or-scroll-up doesn't take a revision argument (it pulls it directly from the magit section).
2014-12-23Bind magit-diff-visit-file-worktree to C-jKyle Meyer
2014-12-23Add command magit-mode-quit-all-windowsKyle Meyer
2014-12-09Update magit-status advice for renamed functionKyle Meyer
Magit commit 23f4f8dd3abe4dd7ee57d8edd62421f1f2c6daea introduced magit-status-internal.
2014-12-01Add command magit-ff-merge-upstreamKyle Meyer
2014-11-30Use Cask and Pallet to manage packagesKyle Meyer
2014-11-30Use slashes after all directory namesKyle Meyer
2014-11-30Remove vendor directoryKyle Meyer
2014-11-26Update for git-commit-mode renameKyle Meyer
2014-11-21Allow flags in magit-push-headKyle Meyer
2014-11-20Stop quoting lambdasKyle Meyer
2014-11-18Update Magit and git-modes setupKyle Meyer
Magit now contains git-commit-mode.el, git-rebase-model.el, and with-editor.el from the git-modes repo. Magit commit 6e601926278a833baed7a9f44f7f6a360be203da
2014-11-18Add magit-push-head commandKyle Meyer
2014-11-16Update magit-log-all-branches for upstream changesKyle Meyer
Magit commit 893e2fea941335f1f428c2e1f996e42822b0fe59
2014-11-09Update magit-log-all-branches for upstream changesKyle Meyer
Magit has removed magit-log-dwim [1] and changed the arguments to magit-log-read-args [2]. [1] e0979bb6bd22a9ce5009a7cdf458034e52817da3 [2] 5737de048843bbad83f16ea13f57d69cdbe6971e
2014-11-09Don't show tags in Magit refs bufferKyle Meyer
This is slow for repos that contain lots of tags.
2014-11-06Unset magit-delete-by-moving-to-trashKyle Meyer
2014-10-25Rephrase docstringKyle Meyer
2014-10-24Load orgitKyle Meyer