all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: York Zhao <gtdplatform@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: How to add property for a buffer object
Date: Wed, 12 Sep 2012 11:30:50 -0400	[thread overview]
Message-ID: <CAD3zm23pfqjStMO1gaV9ZKUCu-x8E4g-YuJHKvsxOG_2ghA2pQ@mail.gmail.com> (raw)

I like longlines-mode and refill-mode, but unfortunately there are
always times I have to turn them off. Therefor, I binded a key to
toggle the `refill-mode'. But I also want to toggle the
`longlines-mode', however, I want to use only one key to toggle either
`refill-mode', or `longlines-mode'. My thought is to add a property to
current buffer so that the toggle command knows which one to toggle.
The problem is that the `get' and `put' function require a symbol not
a buffer object. So, is there any way to "get" and "put" property on a
buffer? Or, is there any other solution to have one function toggle
either `longlines-mode' or 'refill-mode'? Here is my function (not
working) for your reference.

(defun york/toggle-longlines-or-refill-mode ()
  (interactive)
  (if (null (get (current-buffer) 'longlines-mode-turned-off-p))
      (refill-mode)
    (put (current-buffer) 'longlines-mode-turned-off-p
         (if (eq (get (current-buffer) 'longlines-mode-turned-off-p)
                 'Yes)
             'No
           'Yes))
    (longlines-mode 1)))


Thanks in advance

York



             reply	other threads:[~2012-09-12 15:30 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-09-12 15:30 York Zhao [this message]
2012-09-12 15:58 ` How to add property for a buffer object Drew Adams
2012-09-12 16:36   ` York Zhao
2012-09-12 17:10     ` Drew Adams
2012-09-12 18:49       ` York Zhao
2012-09-12 20:55         ` Drew Adams
2012-09-13  1:43           ` York Zhao

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=CAD3zm23pfqjStMO1gaV9ZKUCu-x8E4g-YuJHKvsxOG_2ghA2pQ@mail.gmail.com \
    --to=gtdplatform@gmail.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.