all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Emanuel Berg <moasen@zoho.com>
To: help-gnu-emacs@gnu.org
Subject: Re: config problems and bisecting an org-mode configuration file
Date: Sat, 03 Jun 2017 17:46:34 +0200	[thread overview]
Message-ID: <yw.864lvxvztx.fsf@zoho.com> (raw)
In-Reply-To: 874lvx8bum.fsf@skimble.plus.com

Sharon Kimble wrote:

> I have three problems with my config at the
> moment -
>
> - an inability to close emacs using its
> internal commands

What do you mean ... ? Because you have Gnus
running and it won't save activity?
Or something else?

    (defun emacs-quit-no-confirm ()
      (interactive)
      (when (gnus-alive-p) (gnus-group-exit))
      (save-buffers-kill-terminal t) ) ; silently save all

> and - an inability to
> right-click on an url in gnus to either open
> that url in emacs-w3m

Do you mean URL:s that for some reasons are
not buttons?

> or copy it to the clipboard for use in
> another browser

If it is a literal URL, you can do

    (defun kill-url ()
      (interactive)
      (kill-new (thing-at-point 'url)) )
    )

> and - an inability to use +foo+ to
> strike-through something to effectively show
> that its commented out.

You want a word that is enclosed within plus
signs to take on a specific face? You can do

    (font-lock-add-keywords 'emacs-lisp-mode
      '(
        ("\\+.*\\+" . font-lock-comment-face)
        )
      t) ; APPEND

(Change mode and face to your liking.)

> it needs to be sorted out this weekend

Oh, no! Get to work everyone :)

-- 
underground experts united
http://user.it.uu.se/~embe8573




  reply	other threads:[~2017-06-03 15:46 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-03 13:00 config problems and bisecting an org-mode configuration file Sharon Kimble
2017-06-03 15:46 ` Emanuel Berg [this message]
2017-06-04 19:28   ` Sharon Kimble
2017-06-05 16:21     ` Emanuel Berg
2017-06-05 18:32       ` Sharon Kimble
2017-06-05 21:04         ` Emanuel Berg
2017-06-06 13:03           ` Sharon Kimble
2017-06-07  0:22             ` Emanuel Berg
2017-06-07  1:07               ` Emanuel Berg
2017-06-07  1:26               ` Emanuel Berg
2017-06-07  1:43                 ` Emanuel Berg
2017-06-05 23:18     ` Robert Thorpe
2017-06-05 23:48       ` Emanuel Berg
2017-06-06 12:56       ` Sharon Kimble

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

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

  git send-email \
    --in-reply-to=yw.864lvxvztx.fsf@zoho.com \
    --to=moasen@zoho.com \
    --cc=help-gnu-emacs@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 external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.