summaryrefslogtreecommitdiff
path: root/lisp/init-git.el
AgeCommit message (Collapse)Author
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
2014-10-22Go crazy with anaphoric formsKyle Meyer
2014-10-19Disable magit-backup-modeKyle Meyer
As of Magit c268e7f, backups won't occur if the mode is disabled.
2014-10-18Add command magit-commit-extend-allKyle Meyer
2014-10-18Expand magit-auto-commit docstringKyle Meyer
2014-10-18Add command magit-stage-file-intentKyle Meyer
2014-10-17Add command magit-show-project-commit-under-pointKyle Meyer
2014-10-17Add command magit-show-commit-under-pointKyle Meyer
2014-10-17Create a prefix-map for git-related functionsKyle Meyer
2014-10-17Remove binding of undefined prefix mapKyle Meyer
2014-10-11Unset magit-backup-untrackedKyle Meyer
2014-10-10magit-annex: Unset default '--auto' flagKyle Meyer
2014-09-30Turn on flyspell in Magit commit bufferKyle Meyer
This was deactivated in git-commit-mode.el (0670764).
2014-09-30Fix use of magit-find-file-hookKyle Meyer
2014-09-22Always set --no-ff with magit-merge-editmsgKyle Meyer
2014-09-16Unbind magit-add-change-log-entry-other-windowKyle Meyer
2014-09-12Update for Magit name changeKyle Meyer
Commit c1a79dc changed `magit-TOPIC-popup-defaults' to `magit-TOPIC-arguments'.
2014-09-12Add magit-checkout-masterKyle Meyer
2014-09-10Set magit-popup-use-prefix-argument to defaultKyle Meyer
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'.