From mboxrd@z Thu Jan 1 00:00:00 1970 From: K Subject: Re: C-c ! org-time-stamp-inactive ? Date: Thu, 10 Mar 2016 15:43:44 +0000 (UTC) Message-ID: References: <871t8tx1eh.fsf@kyleam.com> <87lh5qllxa.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40053) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ae2lC-00071B-Tb for emacs-orgmode@gnu.org; Thu, 10 Mar 2016 10:44:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ae2l8-0000Gl-9x for emacs-orgmode@gnu.org; Thu, 10 Mar 2016 10:44:22 -0500 Received: from plane.gmane.org ([80.91.229.3]:51061) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ae2l8-0000Fz-2X for emacs-orgmode@gnu.org; Thu, 10 Mar 2016 10:44:18 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1ae2kz-000395-D2 for emacs-orgmode@gnu.org; Thu, 10 Mar 2016 16:44:09 +0100 Received: from p5DDC6395.dip0.t-ipconnect.de ([93.220.99.149]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 10 Mar 2016 16:44:09 +0100 Received: from k by p5DDC6395.dip0.t-ipconnect.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 10 Mar 2016 16:44:09 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Nicolas Goaziou nicolasgoaziou.fr> writes: > > Hello, > > K limist.com> writes: > > > Kyle Meyer kyleam.com> writes: > > > >> > >> Hello, > >> > >> Luke Crook balooga.com> writes: > >> > >> > For me, C-c ! has suddenly become unbound and no longer inserts > >> > an inactive timestamp. Has this changed in the base org-mode, or > >> > most likely is this an issue with my setup? > >> > >> The default binding hasn't been changed in Org. > >> > > > > I've run into the same problem, with both Org 8.3.4 and MELPA version > > 20160307, the usual C-c ! doesn't work anymore for inserting inactive > > timestamp. If there's been no change to the default binding, any > > suggestions on how to debug this please? Thanks! > > What's the output of C-h c C-c ! in an Org buffer? > > Could you try with a minimal init file, just loading Org 8.3.4? > > Regards, > Hi Nicolas, Thanks for the suggestion. When I type C-h c C-c ! what I see is that it expects another character to be typed, it doesn't recognize C-c ! as complete/anything by itself. If I hit ENTER at that point, it shows, "C-c ! RET (translated from C-c ! ) is undefined" I tried starting Emacs with the -Q option, and of course C-c ! works as usual. I tried adding this line at the end of my personal customizations file: (define-key org-mode-map (kbd "C-c !") 'org-time-stamp-inactive) ...but it has no effect. What did work: C-h m and then search for !, showed that Flycheck mode uses that as its command prefix. Problem mostly solved, :-) K