From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: "Philip K." Newsgroups: gmane.emacs.help Subject: Re: command-log-mode Date: Mon, 11 Jan 2021 12:07:46 +0100 Message-ID: <87bldvviil.fsf@posteo.net> References: Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="30343"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) Cc: Help Gnu Emacs To: steve-humphreys@gmx.com Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Mon Jan 11 12:08:20 2021 Return-path: Envelope-to: geh-help-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 1kyv3c-0007ly-2z for geh-help-gnu-emacs@m.gmane-mx.org; Mon, 11 Jan 2021 12:08:20 +0100 Original-Received: from localhost ([::1]:53312 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kyv3b-0001VK-4b for geh-help-gnu-emacs@m.gmane-mx.org; Mon, 11 Jan 2021 06:08:19 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:42514) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kyv3F-0001VD-Hx for help-gnu-emacs@gnu.org; Mon, 11 Jan 2021 06:07:57 -0500 Original-Received: from mout01.posteo.de ([185.67.36.65]:41667) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kyv3B-00040j-QM for help-gnu-emacs@gnu.org; Mon, 11 Jan 2021 06:07:57 -0500 Original-Received: from submission (posteo.de [89.146.220.130]) by mout01.posteo.de (Postfix) with ESMTPS id 3C67B160065 for ; Mon, 11 Jan 2021 12:07:49 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1610363269; bh=jamc7ofx/X9ieVWLYUu8ju5G2ExZM1w4I7bolg0+qvU=; h=From:To:Cc:Subject:Date:From; b=IKlDi3wbk5qXqPt01JinUk4jMilMMlV+xHQRprvlfFtYxca0r6shUb0XaB1MkdH6h 1OrMBUG8IQ3/vIDmgKzNOn1GiCiyY5F8r7+7cNGmUxEfQOsB4xbkxOn/Qd22+VMVyk gmPJaUvhtpBX0CBHt2Idk6LTjMvM3HyRGIX1+aNtmyJed9pKRq2EWEuJoqmAU+gWcM q3JC2bacCiCb0mC6SlWPwnbojwPoNw9sVwKxUr0hT2dg8QvTJQ1y0d10JamT5LyXcU 367+345oVRFoSkkRnkWcWr61DEFFW1Gi+2vvVaFvFYXtXILROkiB+8y8q+KcXHwjnu 4WmvKccFnGKiw== Original-Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4DDrXN2ZFyz6tmj; Mon, 11 Jan 2021 12:07:48 +0100 (CET) In-Reply-To: (steve-humphreys@gmx.com's message of "Mon, 11 Jan 2021 11:09:12 +0100") Received-SPF: pass client-ip=185.67.36.65; envelope-from=philipk@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H4=-0.01, RCVD_IN_MSPIKE_WL=-0.01, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.io gmane.emacs.help:127184 Archived-At: steve-humphreys@gmx.com writes: > I am trying to use command-log-mode, but I am unsure how to use it. > Have found no instructions on how to install it and call it. > > The source code is here > > https://github.com/lewang/command-log-mode The Commentary section says ;; To enable, use e.g.: ;; ;; (require 'command-log-mode) ;; (add-hook 'LaTeX-mode-hook 'command-log-mode) ;; ;; To see the log buffer, call M-x clm/open-command-log-buffer. So basically, all you have to do is M-x command-log-mode, to enable it wherever you need it, and then manually open the log buffer. -- Philip K.