From: wael-zwaiter@gmx.com
To: Robert Thorpe <rt@robertthorpeconsulting.com>
Cc: help-gnu-emacs@gnu.org
Subject: Re: Indenting with spaces rather than tabs
Date: Fri, 29 Jan 2021 14:04:20 +0100 [thread overview]
Message-ID: <trinity-b97bfe14-9351-43bb-bc77-57a973deabc8-1611925460622@3c-app-mailcom-bs02> (raw)
In-Reply-To: <87a6ssxqke.fsf@robertthorpeconsulting.com>
Can I do as follows, so that tabs are removed when "dfv-untabify-state"
is "true".
(defvar dfv-untabify-state nil)
(defun clean-before-save ()
"Removes trailing spaces and tabs upon exiting"
(delete-trailing-whitespace)
(when (dfv-untabify-state)
(unless (member major-mode '(makefile-gmake-mode makefile-mode))
(untabify (point-min) (point-max))) ))
> Sent: Friday, January 29, 2021 at 5:25 PM
> From: "Robert Thorpe" <rt@robertthorpeconsulting.com>
> To: wael-zwaiter@gmx.com
> Cc: help-gnu-emacs@gnu.org
> Subject: Re: Indenting with spaces rather than tabs
>
> wael-zwaiter@gmx.com writes:
>
> > Want to indent with spaces rather than tabs and have found the command
> >
> > (setq-default indent-tabs-mode nil)
> >
> > But one can also use "M-x untabify".
> >
> > What should I use for my init file? Am not so sure about using "setq"
> > rather than "setq-default".
>
> If you set indent-tabs-mode like that then it applies to things that you
> edit.
>
> But it does not apply to all of the file. Parts of the file you don't
> edit are untouched. Now often this is what you want. If you're working
> on a project in a group then you don't really want whitespace changes.
> (Though really everyone should be using the same convention for tabs).
>
> On the other hand, untabify deals with the whole file. It changes parts
> you have never edited or viewed.
>
> The setq-default part means that you're setting the default value for
> buffers. But modes in buffers may over-ride it with a local variable
> write. I'm not sure that you need setq-default here.
>
> BR,
> Robert Thorpe
>
next prev parent reply other threads:[~2021-01-29 13:04 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-01-29 1:26 Indenting with spaces rather than tabs wael-zwaiter
2021-01-29 2:00 ` moasenwood--- via Users list for the GNU Emacs text editor
2021-02-01 9:46 ` Philip K.
2021-02-01 9:59 ` moasenwood--- via Users list for the GNU Emacs text editor
2021-01-29 5:25 ` Robert Thorpe
2021-01-29 13:04 ` wael-zwaiter [this message]
2021-01-29 13:10 ` moasenwood--- via Users list for the GNU Emacs text editor
2021-01-30 18:46 ` Robert Thorpe
2021-01-30 19:25 ` wael-zwaiter
2021-01-31 6:02 ` Robert Thorpe
2021-01-31 6:11 ` moasenwood--- via Users list for the GNU Emacs text editor
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.gnu.org/software/emacs/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=trinity-b97bfe14-9351-43bb-bc77-57a973deabc8-1611925460622@3c-app-mailcom-bs02 \
--to=wael-zwaiter@gmx.com \
--cc=help-gnu-emacs@gnu.org \
--cc=rt@robertthorpeconsulting.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.
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).