update packages
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
;;; magit-refs.el --- listing references -*- lexical-binding: t -*-
|
||||
|
||||
;; Copyright (C) 2010-2021 The Magit Project Contributors
|
||||
;; Copyright (C) 2010-2022 The Magit Project Contributors
|
||||
;;
|
||||
;; You should have received a copy of the AUTHORS.md file which
|
||||
;; lists all contributors. If not, see http://magit.vc/authors.
|
||||
@@ -8,6 +8,8 @@
|
||||
;; Author: Jonas Bernoulli <jonas@bernoul.li>
|
||||
;; Maintainer: Jonas Bernoulli <jonas@bernoul.li>
|
||||
|
||||
;; SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
;; Magit is free software; you can redistribute it and/or modify it
|
||||
;; under the terms of the GNU General Public License as published by
|
||||
;; the Free Software Foundation; either version 3, or (at your option)
|
||||
@@ -27,9 +29,6 @@
|
||||
|
||||
;;; Code:
|
||||
|
||||
(eval-when-compile
|
||||
(require 'subr-x))
|
||||
|
||||
(require 'magit)
|
||||
|
||||
;;; Options
|
||||
@@ -64,7 +63,7 @@ branch Show counts for branches only.
|
||||
nil Never show counts.
|
||||
|
||||
To change the value in an existing buffer use the command
|
||||
`magit-refs-show-commit-count'"
|
||||
`magit-refs-set-show-commit-count'."
|
||||
:package-version '(magit . "2.1.0")
|
||||
:group 'magit-refs
|
||||
:safe (lambda (val) (memq val '(all branch nil)))
|
||||
@@ -278,8 +277,8 @@ the outcome.
|
||||
(defvar magit-refs-mode-map
|
||||
(let ((map (make-sparse-keymap)))
|
||||
(set-keymap-parent map magit-mode-map)
|
||||
(define-key map "\C-y" 'magit-refs-set-show-commit-count)
|
||||
(define-key map "L" 'magit-margin-settings)
|
||||
(define-key map (kbd "C-y") 'magit-refs-set-show-commit-count)
|
||||
(define-key map (kbd "L") 'magit-margin-settings)
|
||||
map)
|
||||
"Keymap for `magit-refs-mode'.")
|
||||
|
||||
@@ -342,7 +341,9 @@ Type \\[magit-reset] to reset `HEAD' to the commit at point.
|
||||
["Actions"
|
||||
("y" "Show refs, comparing them with HEAD" magit-show-refs-head)
|
||||
("c" "Show refs, comparing them with current branch" magit-show-refs-current)
|
||||
("o" "Show refs, comparing them with other branch" magit-show-refs-other)]
|
||||
("o" "Show refs, comparing them with other branch" magit-show-refs-other)
|
||||
("r" "Show refs, changing commit count display"
|
||||
magit-refs-set-show-commit-count)]
|
||||
(interactive (list (or (derived-mode-p 'magit-refs-mode)
|
||||
current-prefix-arg)))
|
||||
(if transient
|
||||
@@ -528,9 +529,12 @@ line is inserted at all."
|
||||
(magit-insert-heading
|
||||
(magit-refs--format-focus-column tag 'tag)
|
||||
(propertize tag 'font-lock-face 'magit-tag)
|
||||
(make-string (max 1 (- magit-refs-primary-column-width
|
||||
(length tag)))
|
||||
?\s)
|
||||
(make-string
|
||||
(max 1 (- (if (consp magit-refs-primary-column-width)
|
||||
(car magit-refs-primary-column-width)
|
||||
magit-refs-primary-column-width)
|
||||
(length tag)))
|
||||
?\s)
|
||||
(and msg (magit-log-propertize-keywords nil msg)))
|
||||
(when (and magit-refs-margin-for-tags (magit-buffer-margin-p))
|
||||
(magit-refs--format-margin tag))
|
||||
@@ -569,9 +573,12 @@ line is inserted at all."
|
||||
(magit-refs--format-focus-column branch)
|
||||
(magit-refs--propertize-branch
|
||||
abbrev ref (and headp 'magit-branch-remote-head))
|
||||
(make-string (max 1 (- magit-refs-primary-column-width
|
||||
(length abbrev)))
|
||||
?\s)
|
||||
(make-string
|
||||
(max 1 (- (if (consp magit-refs-primary-column-width)
|
||||
(car magit-refs-primary-column-width)
|
||||
magit-refs-primary-column-width)
|
||||
(length abbrev)))
|
||||
?\s)
|
||||
(and msg (magit-log-propertize-keywords nil msg))))
|
||||
(when (magit-buffer-margin-p)
|
||||
(magit-refs--format-margin branch))
|
||||
@@ -646,8 +653,7 @@ line is inserted at all."
|
||||
(if branch
|
||||
(magit-refs--propertize-branch
|
||||
branch ref (and headp 'magit-branch-current))
|
||||
(magit--propertize-face "(detached)"
|
||||
'font-lock-warning-face)))
|
||||
(magit--propertize-face "(detached)" 'magit-branch-warning)))
|
||||
(u:ahead (and u:track
|
||||
(string-match "ahead \\([0-9]+\\)" u:track)
|
||||
(magit--propertize-face
|
||||
|
||||
Reference in New Issue
Block a user