emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: Brent Goodrick <bgoodr@gmail.com>
Cc: emacs-orgmode@gnu.org
Subject: Removing ding each time I type TAB when not after a structure template with org-tempo enabled
Date: Sun, 4 Feb 2018 11:07:10 -0800	[thread overview]
Message-ID: <CAJj=8EGk64X87EoHB-ZzNdBKNgcJ_u1LyABzbW3575eW7Oao0g@mail.gmail.com> (raw)

Hi:

I recently upgraded to org from Git. Thus, org-version for me returns:

Org mode version 9.1.6 (release_9.1.6-425-gd89e35 @
/home/brentg/emacs_lisp_imported/org-mode/org-mode/lisp/)

In this new version, I discovered that structure templates were not
enabled by default, so I enabled them. But to my chagrin, I found that
I get a "ding" each time I type the TAB key when on a blank line that
is _not_ right after a structure template such as "<e".

Below is my hackaround, but can someone take a look into arranging it
so that is not the default to ding if tempo-complete-tag cannot find
anything to complete, and thus I can remove my hack?

Just passing silent to it will actually break TABing over (normal tab
meaning) in Org buffers, so the obvious fix won't work.  (ding)
returns nil which it must so that the hook works as expected.

Thanks,
Brent

----------------------------------------------------------

(defun bg-tempo-complete-tag-no-ding (&optional silent)
  ;; flet is NOT the same as cl-flet as it does not bind the function _deeply_
  ;; so that some function that calls the (ding) should pick up this definition
  ;; here. See https://emacs.stackexchange.com/a/3452/15483
  ;;
  ;; The reason we have to do it this way is because if tempo-complete-tag
  ;; returns t (which it will if we set its 'silent' argument to t), it
  ;; short-circuits the use of tempo-complete-tag from within
  ;; org-tab-before-tab-emulation-hook, which means even TABing to the line
  ;; underneath a Org check-list is broken (doesn't even tab). Ugggggh!
  ;;
  (cl-letf (((symbol-function 'ding)
         (lambda (&optional silent)
           ;; (message "bg-tempo-complete-tag-no-ding: Hack around bug
in ding in tempo-complete-tag or org mode")
           nil)))
    (tempo-complete-tag silent)))

(defun bg-org-enable-structure-templates ()
  ;;
  ;; Enable Structure templates that at one point were by default enabled in Org
  ;; mode, but someone changed that for some reason, so re enable it.
  ;;
  (require 'org-tempo)
  ;;
  ;; But tempo-complete-tag is obnoxious. It dings if you have point at the
  ;; start of a line (e.g., NOT after something like "<e"), and if it cannot
  ;; find a template prior to point, it dings. So disable that:
  ;;
  (remove-hook 'org-tab-before-tab-emulation-hook
           'tempo-complete-tag)
  (add-hook 'org-tab-before-tab-emulation-hook
        'bg-tempo-complete-tag-no-ding))


Thanks,
Brent

             reply	other threads:[~2018-02-04 19:07 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-04 19:07 Brent Goodrick [this message]
2018-02-11 11:05 ` Removing ding each time I type TAB when not after a structure template with org-tempo enabled Nicolas Goaziou
2018-02-25 18:32   ` Brent Goodrick
2018-02-27  1:05     ` Nicolas Goaziou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAJj=8EGk64X87EoHB-ZzNdBKNgcJ_u1LyABzbW3575eW7Oao0g@mail.gmail.com' \
    --to=bgoodr@gmail.com \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).