From: weber <hugows@gmail.com>
To: help-gnu-emacs@gnu.org
Subject: Re: Use tab key to indent both region AND line?
Date: 20 Apr 2007 15:12:49 -0700 [thread overview]
Message-ID: <1177107169.127328.119460@o5g2000hsb.googlegroups.com> (raw)
In-Reply-To: <1177096075.943972.240990@o5g2000hsb.googlegroups.com>
On Apr 20, 4:07 pm, mopi <52ha...@gmail.com> wrote:
> Wohoo!
>
> I found this little thing in easymacs.el that does exactly what I
> want.
>
> (defun easymacs-rigidly-indent-line-or-region ()
> (interactive)
> (if mark-active
> (increase-left-margin (region-beginning) (region-end) nil)
> (increase-left-margin (point-at-bol) (point-at-eol) nil))
> (setq deactivate-mark nil))
>
> (defun easymacs-rigidly-unindent-line-or-region ()
> (interactive)
> (if mark-active
> (decrease-left-margin (region-beginning) (region-end) nil)
> (decrease-left-margin (point-at-bol) (point-at-eol) nil))
> (setq deactivate-mark nil))
>
> (global-set-key [tab] 'easymacs-rigidly-indent-line-or-region)
> (global-set-key [S-tab] 'easymacs-rigidly-unindent-line-or-
> region)
Hummm I want that also :)
prev parent reply other threads:[~2007-04-20 22:12 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-04-20 12:10 Use tab key to indent both region AND line? mopi
2007-04-20 12:45 ` Denis Bueno
2007-04-20 13:58 ` Livin Stephen Sharma
[not found] ` <mailman.2307.1177077814.7795.help-gnu-emacs@gnu.org>
2007-04-20 16:01 ` weber
2007-04-20 17:16 ` Lennart Borgman (gmail)
2007-04-20 22:41 ` Lennart Borgman (gmail)
[not found] ` <mailman.2326.1177089678.7795.help-gnu-emacs@gnu.org>
2007-04-20 17:54 ` mopi
2007-04-20 19:07 ` mopi
2007-04-20 22:12 ` weber [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=1177107169.127328.119460@o5g2000hsb.googlegroups.com \
--to=hugows@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.