From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Juri Linkov Newsgroups: gmane.emacs.bugs Subject: bug#6746: 24.0.50; Add a key binding to get full commit log Date: Wed, 11 May 2022 19:48:59 +0300 Organization: LINKOV.NET Message-ID: <861qx01nhw.fsf@mail.linkov.net> References: <878rra4r18.fsf@gnus.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="10242"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (x86_64-pc-linux-gnu) Cc: 6746@debbugs.gnu.org, "Aneesh Kumar K.V" To: Lars Ingebrigtsen Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Wed May 11 19:23:07 2022 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1noq3G-0002Ms-96 for geb-bug-gnu-emacs@m.gmane-mx.org; Wed, 11 May 2022 19:23:06 +0200 Original-Received: from localhost ([::1]:36792 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1noq3F-0006R7-0z for geb-bug-gnu-emacs@m.gmane-mx.org; Wed, 11 May 2022 13:23:05 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:53814) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1noq2F-0005Rq-9i for bug-gnu-emacs@gnu.org; Wed, 11 May 2022 13:22:03 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:44449) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1noq2F-0008HK-0b for bug-gnu-emacs@gnu.org; Wed, 11 May 2022 13:22:03 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1noq2E-0001r2-TO for bug-gnu-emacs@gnu.org; Wed, 11 May 2022 13:22:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Juri Linkov Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 11 May 2022 17:22:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 6746 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: moreinfo Original-Received: via spool by 6746-submit@debbugs.gnu.org id=B6746.16522897087044 (code B ref 6746); Wed, 11 May 2022 17:22:02 +0000 Original-Received: (at 6746) by debbugs.gnu.org; 11 May 2022 17:21:48 +0000 Original-Received: from localhost ([127.0.0.1]:38334 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1noq20-0001pY-FK for submit@debbugs.gnu.org; Wed, 11 May 2022 13:21:48 -0400 Original-Received: from relay3-d.mail.gandi.net ([217.70.183.195]:35315) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1noq1y-0001pC-Fz for 6746@debbugs.gnu.org; Wed, 11 May 2022 13:21:47 -0400 Original-Received: (Authenticated sender: juri@linkov.net) by mail.gandi.net (Postfix) with ESMTPSA id 75A9E60004; Wed, 11 May 2022 17:21:37 +0000 (UTC) In-Reply-To: <878rra4r18.fsf@gnus.org> (Lars Ingebrigtsen's message of "Mon, 09 May 2022 18:19:47 +0200") X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:231970 Archived-At: >> This is with vc-git.el. With C-x v L it would nice, if we are able >> to show the full commit log. Ideally i would expect showing changeset >> diff to also show me the full commit log. That implies update 'D' to >> to show full commit log along with diff. If that doesn't work adding a >> new key binding would be nice > > I'm not sure what's meant by "full commit log", but `C-x v L' in Emacs > 28 onwards (at least) has: > > --- > A special case is when the prefix argument is 1: in this case > the command asks for the ID of a revision, and shows that revision > with its diffs (if the underlying VCS supports that). > --- > > Is this the requested functionality? I guess what is requested is to be able to customize the log style to not use shortlog on `C-x v L', and to use full log messages like is used by `C-x v l' on a file. But this is already possible by (setq vc-log-short-style nil)