summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2017-12-31Update for magit-popup's moveKyle Meyer
2017-12-31magit: Modify message for refs/pull/ mergesKyle Meyer
2017-12-31org-agenda-custom-commands: Add inbox viewKyle Meyer
2017-12-31Create eval-mapKyle Meyer
2017-12-31Update some variable values for Debian switchKyle Meyer
2017-11-17Remove org-structure-template-alist customizationKyle Meyer
This will fail as of Org's c04e357f3 (Replace easy templates with org-insert-structure-template, 2017-11-05). I don't think I was using this much anymore, and, if I do end up missing this functionality, yasnippet is probably a better solution.
2017-11-17Remove magit-diff-while-committing-no-select adviceKyle Meyer
This is redundant as of Magit's 0fefe671 (magit-diff-while-committing: stay in message buffer, 2017-11-04).
2017-11-17Use default background for org-agenda-restriction-lockKyle Meyer
2017-11-17notmuch: Don't indent messagesKyle Meyer
2017-11-02notmuch-hello-sections: Remove notmuch-hello-insert-saved-searchesKyle Meyer
2017-10-28snakemake-recompile-no-dryrun: Support local snakemake-programKyle Meyer
I set snakemake-program to a directory-local variable to run the Snakemake call within a Guix profile.
2017-10-28Add custom notmuch-show-stash-git-send-email variantKyle Meyer
2017-10-28Add missing prefix mapKyle Meyer
This should have been added with 522a5960.
2017-10-26magit-status-sections-hook: Update for new defaultKyle Meyer
As of Magit's ebbf00b7 (Always show recent commits in the status buffer, 2017-10-26), magit-insert-unpushed-to-upstream has been replaced by magit-insert-unpushed-to-upstream-or-recent.
2017-10-26Don't use a custom value for magit-uniquify-buffer-namesKyle Meyer
As of Magit's 7edecce4 (Append an asterisk to buffer names when possible, 2017-10-09), the default value gives the same result when magit-uniquify-buffer-names is nil.
2017-10-26Don't explicitly disable magit-revision-show-gravatarsKyle Meyer
As of Magit's a01490b6 (magit-revision-show-gravatars: don't by default, 2015-10-28), the default value is nil.
2017-10-26Don't set non-existent magit-push-always-verifyKyle Meyer
This was removed a long time ago in Magit's 9e4f84f6 (magit-push-always-verify: remove option, 2015-11-28).
2017-10-19Bind ess-eval-region-or-function-or-paragraph in r-prefix-mapKyle Meyer
2017-10-19snippets: Add element_blank snippet for ESSKyle Meyer
2017-10-13org-link-edit-slurp-link: Update for renamed functionKyle Meyer
Renamed in org-link-edit's 5dd5901c.
2017-10-13notmuch: Add command to show GitHub PRs in MagitKyle Meyer
Inspired by William Casarin: https://notmuchmail.org/pipermail/notmuch/2017/025542.html
2017-10-07snippets: Add rchunk for *.Rmd filesKyle Meyer
2017-10-07snippets: Add more snippets for tidyverse importsKyle Meyer
2017-10-05Move {beginning,end}-of-buffer to more comfortable bindingsKyle Meyer
2017-10-05dired: Add beginning-of-buffer variantKyle Meyer
2017-09-22open-github-patch: Escape unintentional wildcardKyle Meyer
2017-08-10Move bind-keys call for kill-map to :initKyle Meyer
... in order to autoload commands.
2017-08-03mail: Read sync-mail arguments through custom functionKyle Meyer
2017-08-02diff-review: Fix function for comment movementKyle Meyer
Rework km/diff-review-next-comment's move procedure to avoid an error when the buffer doesn't contain any comments and to short-circuit the recursion when the search function fails. This also introduces a change in behavior when N exceeds the number of comment blocks before/after point: instead of always positioning point at the start of the block, point is positioned at the end of the block for forward movement and the start of the block for backward movement.
2017-07-30Add magit-imergeKyle Meyer
2017-07-28Add autoloaded avy-action-copy-line to avy-dispatch-alistKyle Meyer
2017-07-27snippets: Set message-mode as notmuch-message-mode's parentKyle Meyer
2017-07-27snippets: Add "tiny scissors"Kyle Meyer
2017-07-27snippets: Remove redundant (or nearly redundant) namesKyle Meyer
The name field defaults to the file name, so don't bother explicitly specifying a name field that matches or nearly matches the file name.
2017-07-27snippets: Rename anchor to commented-anchorKyle Meyer
2017-07-27snippets/text-mode/km-todo: Remove stale commentKyle Meyer
2017-07-27snippets: Remove stale snippetKyle Meyer
2017-07-23Add copy line action to avy-dispatch-alistKyle Meyer
2017-07-23server: Disable server-use-tcpKyle Meyer
Using TCP sockets isn't necessary to run multiple servers. emacsclient's --socket-name flag can be used instead of --server-file to connect to a named server. See the comments of http://tychoish.com/post/running-multiple-emacs-daemons-on-a-single-system/
2017-07-22yas: Add yasnippet-snippets collectionKyle Meyer
2017-07-09Enable magit-wip-after-save-mode globally, againKyle Meyer
2017-07-09Move magit-wip keybindings to :init phaseKyle Meyer
2017-07-03Add custom notmuch-tree-from-show-current-query commandKyle Meyer
2017-07-03notmuch: Swap z/Z tree commandsKyle Meyer
2017-07-01diff-review: Add open-line variantKyle Meyer
2017-07-01diff-review: Add commands to move to the previous/next commentKyle Meyer
2017-07-01diff-review: Extract bounds logic into separate functionKyle Meyer
The same calculation will be useful in the next commit, which adds commands for moving to the next/previous comment.
2017-07-01diff-review-mode: Show mode map in docstringKyle Meyer
An upcoming commit will add commands for going to the next/previous comment.
2017-07-01diff-review: Add more docstringsKyle Meyer
2017-07-01diff-review-as-mail: Anchor regexp searchKyle Meyer