summaryrefslogtreecommitdiff
path: root/lisp/km-magit.el
AgeCommit message (Collapse)Author
2024-01-22km/magit-github-diff-link: Dereference to commitKyle Meyer
Giving tag OID won't work on GitHub.
2024-01-22km/magit-insert-staged-file: Strip directory by defaultKyle Meyer
2024-01-22km/magit-update-or-auto-commit: Strip directory by defaultKyle Meyer
2024-01-22Update completing-read require-match arg for Emacs 29 compatibilityKyle Meyer
Several spots pass `require' to the REQUIRE-MATCH arg of magit-completing-read (and thus completing-read). That used to trigger the "anything else behaves like t behavior", as intended, but Emacs 29 (49e06183f59) gained special handling for function values. Rename the argument to non-nil/non-t symbol that doesn't collide with a known function name.
2022-11-26km/magit-update-or-auto-commit: Improve message for new fileKyle Meyer
2022-07-21km/magit-rev-ancestor-p: change unnecessary let* to letKyle Meyer
2022-07-20km/magit-rev-ancestor-p: Fix article in prompt and docstringKyle Meyer
2022-02-06Drop dates from copyright linesKyle Meyer
public-inbox has started to drop dates from its copyright lines, pointing to the recommendation at https://www.linuxfoundation.org/blog/copyright-notices-in-open-source-software-projects/ I regularly fail to keep copyright lines up to date, so I'll gladly follow suit.
2022-01-15km/magit-patch-create-series: Allow base overrideKyle Meyer
I sometimes want to use an outdated base.
2021-06-12magit: Add commands to dump diff or patch to a bufferKyle Meyer
2021-06-12km/magit-patch-create-series: Visit single patchKyle Meyer
If km/magit-patch-create-series, then I want to edit the file.
2021-02-06km/magit-patch-create-series: Improve subject regexpKyle Meyer
Noticed this for a series generated with --rfc.
2021-01-29Prefer string-suffix-p to string-match-pKyle Meyer
2020-12-24Silence byte-compilerKyle Meyer
2020-12-24km/magit-copy-as-kill: Adjust for recent upstream changeKyle Meyer
magit-copy-section-value gained an argument in 8e713d10 (magit-copy-section-value: Strip lines depending on sign of argument, 2020-12-21).
2020-12-24km/magit-copy-as-kill: CosmeticsKyle Meyer
2020-12-24Fix km/magit-copy-{commit-message,hunk}Kyle Meyer
2f209622 (km-magit: Don't use obsolete magit-section-when, 2018-12-09) botched the magit-section-when to magit-section-match conversion. Before that, I missed adjusting km/magit-copy-commit-message for the `message' to `commit-message' rename in cfed6f5b (Bind RET to magit-show-commit on commit messages in rev buffers, 2017-11-08). That I didn't notice until now is probably a sign I don't use these enough to keep them around.
2020-12-24Drop use of dashKyle Meyer
2020-12-12km/magit-patch-create-series: Fix cover letter regexpKyle Meyer
*blush*
2020-11-22km/magit-patch-create-series: Enable auto-fill-mode and flyspell-modeKyle Meyer
2020-11-18km/magit-patch-create-series: Add a comment about file argumentsKyle Meyer
2020-11-18km/magit-patch-create-series: Handle already-visited cover letterKyle Meyer
In the unlikely case that there's already a buffer visiting the cover letter, point may be beyond the subject.
2020-11-18km/magit-patch-create-series: Move an error closer to its originKyle Meyer
2020-11-18km/magit-patch-create-series: Fix cover letter regex for rerollsKyle Meyer
2020-09-01magit: Add two custom patch commandsKyle Meyer
2020-09-01Update copyright yearsKyle Meyer
2020-04-16km/magit-toggle-remote-skip: Give visual feedbackKyle Meyer
2020-04-16km-magit: Add command to create dedicated log for a topic branchKyle Meyer
2020-04-16km/magit-show-commit-at-point: Recognize 'git describe' formatKyle Meyer
2020-04-16km/magit-copy-commit-summary: Strip trailing periodKyle Meyer
Trailing periods in commit message subjects are especially annoying when using the reference format within a paragraph.
2020-04-16km/magit-copy-commit-summary: Use git's new "reference" formatKyle Meyer
The format in km/magit-copy-commit-summary was based off of Git's convention, and Git v2.25 added a name for it.
2020-04-16km-magit: Change name and default suffix of branch backup commandKyle Meyer
I've been using "__vN" to record published versions of branches and "__cpN" for making "check points" of a branch when I'm in a state that I might want to look back on or reset to (e.g., because I'm going to do an involved, multi-step rewrite). I tend to use "__cp" a lot more, so make it the default.
2020-04-16km/magit-branch-backup-current: Allow non-interactive suffix argKyle Meyer
This will make it easier to create commands for common ones.
2020-04-16km-magit: Add branch "set" archiving and deletionKyle Meyer
2020-04-16km-magit: Add command for listing tags which contain a revisionKyle Meyer
2020-04-16km/magit-show-commit-at-point: Convert regexp to rxKyle Meyer
2020-04-16km/magit-branch-archive: Delay refresh until outside loopKyle Meyer
2020-04-13Update URL values for repository moveKyle Meyer
2019-10-10magit: Add command for configuring refs/pull/*/head fetchKyle Meyer
2019-10-10magit: Add "checkout detached" commandKyle Meyer
2019-10-10magit: Add command for toggling skipFetchAllKyle Meyer
2019-10-10km/magit-github-url: Try origin URL if bug-reference URL is unsetKyle Meyer
2019-08-10Use xdigit for sha1 regexpsKyle Meyer
2019-08-10km/magit-branch-archive: Show archive in process bufferKyle Meyer
2019-08-10km/magit-diff-visit-file: Disable magit-diff-visit-previous-blobKyle Meyer
At some point after this was added, Magit gained support for visiting REV^. My brain's used to this custom variant, so disable the new functionality rather than removing this variant.
2019-08-10Fix spots that pass variable strings as message's format-stringKyle Meyer
2019-08-10magit: Add command for doing fast-forward merge of push branchKyle Meyer
2019-05-05magit: Add command to copy branchKyle Meyer
2019-05-05km/magit-copy-commit-summary: Fix stale accessorKyle Meyer
2019-05-05Update for Magit's rework of buffer arguments (62d06e6)Kyle Meyer