From: uzibalqa <uzibalqa@proton.me>
To: Adham Omran <mail@adham-omran.com>
Cc: uzibalqa via Users list for the GNU Emacs text editor
<help-gnu-emacs@gnu.org>
Subject: Re: Enabling a mode if disabled
Date: Thu, 13 Jul 2023 14:18:44 +0000 [thread overview]
Message-ID: <x9p0r5eXUekNBY2J42tuBhnc-t_KOAOcbB9QLfmx19ZluHUju1Qh2XQGRvxmyUutmvzxDto8VoDs-u_vgENq3lZoBN9y6bjgPXZGjkTlzIk=@proton.me> (raw)
In-Reply-To: <877cr4gdys.fsf@nixos.mail-host-address-is-not-set>
------- Original Message -------
On Friday, July 14th, 2023 at 1:04 AM, Adham Omran <mail@adham-omran.com> wrote:
> uzibalqa uzibalqa@proton.me writes:
>
> > I want to enable scroll-bar only if the mode happens to be disabled. And
> > conversely to disable it if it is enabled. What can I do?
> >
> > (scroll-bar-mode 1)
>
>
> A hook should useful here.
>
> (defun my-scroll-bar-mode-hook ()
> (if (eq major-mode 'org-mode)
> (scroll-bar-mode 1)
> (scroll-bar-mode -1)))
>
> (add-hook 'after-change-major-mode-hook 'my-scroll-bar-mode-hook)
>
> Use the proper hook depending on when you want the change to occur.
> Here it occurs after calling *-mode.
>
> Adham Omran
The test should be done upon scroll-bar-mode rather than some other major mode.
prev parent reply other threads:[~2023-07-13 14:18 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-13 11:03 Enabling a mode if disabled uzibalqa
2023-07-13 12:27 ` Robby Zambito
2023-07-13 13:04 ` Adham Omran
2023-07-13 14:18 ` uzibalqa [this message]
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='x9p0r5eXUekNBY2J42tuBhnc-t_KOAOcbB9QLfmx19ZluHUju1Qh2XQGRvxmyUutmvzxDto8VoDs-u_vgENq3lZoBN9y6bjgPXZGjkTlzIk=@proton.me' \
--to=uzibalqa@proton.me \
--cc=help-gnu-emacs@gnu.org \
--cc=mail@adham-omran.com \
/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.