unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
From: Artur Hefczyc <DONTkobit@SPAMplusnet.MEpl>
Subject: Re: Emacs newbie - Syntax Highlighting and Indentation
Date: Sat, 15 Nov 2003 19:38:47 +0430	[thread overview]
Message-ID: <87n0axzn28.fsf@141-moc-9.acn.waw.pl> (raw)
In-Reply-To: bp5cde$da0$1@news.net.uni-c.dk

David Rasmussen <david.rasmussen@gmx.net> writes:
> Artur Hefczyc wrote:
>> The shortest answer to your question is:
>> Put to your .emacs file following code:
>> (setq c-basic-offset 2)
> Where exactly in .emacs do I put this? Just at the bottom 
> after everything else?

It doesn't matter where you put it in file, it does matter in what
context.
I think you can put following code in any place in your .emacs file:

(defun my-java-mode-hook ()
  "Hook for running Java file..."
  (message "Loading my-java-hook...")
  (setq c-block-comment-prefix "* "
	indent-tabs-mode nil
	c-basic-offset 2)
  (message "my-java-mode-hook function executed")
)
(add-hook 'java-mode-hook 'my-java-mode-hook)

As you can see I defined very simple elisp function: 'my-java-mode-hook'
which will be executed every time you switch to Java file. You can put
there some more actions or settings. I suggest to look in my .emacs file
(mentioned in another post) and look for function: 'my-jde-mode-hook'.

Above code presents one advantage over configuring emacs from menu or
customization package. You can define any (even simple) function which
is executed in certain cases. And you have a little more control.

>> Other setting you might find useful for Java coding are:
>> (setq tab-width 4
>>       indent-tabs-mode nil)

Well, it's a shame! These 2 settings together doesn't make sense,
almost.
'tab-width' variable controls 'visual' width of table character, so it
can appear as 4 spaces if put in file.
'indent-tabs-mode' when set to 'nil' means: don't use tab character for
indentation. Set value to 't' if you want to use tab characters.

So you can blame me that I set tab-width for some value and then I
order emacs to not use tabs at all! However it can be useful if you
don't use tabs yourself but from time to time you load other files -
not your own, containing tabs.

On another side using tabs can be very useful. Lets assume you are
working on some code with more developers. Each of them prefer
different indentation depth. If you start using tabs each of them can
set different 'tab-width' so the same file can be displayed differently!

By the way, if you want to learn about some variable under emacs, place
cursor on variable name and press:
C-h v <Enter>  (Control-'h' and 'v')
if you want function description
C-h f <Enter>

If you place cursor on symbol name it is taken as default symbol but
you can change symbol name if you want description for another. And
remember with <tab> key you have symbol completing feature available.
Don't ask what does it mean, just try it!

Artur
-- 
Artur Hefczyc, Open Source Developer:
http://www.geotools.org/
http://generguide.sourceforge.net/
http://wttools.sourceforge.net/
http://maven-plugins.sourceforge.net/

  reply	other threads:[~2003-11-15 15:08 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-11-14 15:52 Emacs newbie - Syntax Highlighting and Indentation David Rasmussen
2003-11-14 17:13 ` Uwe Siart
2003-11-14 17:48 ` Jiri Pejchal
2003-11-14 18:08 ` Michael M Mason
2003-11-14 18:20 ` Artur Hefczyc
2003-11-15 14:18   ` David Rasmussen
2003-11-15 15:08     ` Artur Hefczyc [this message]
2003-11-14 22:13 ` David Rasmussen
2003-11-14 22:22   ` Jody M. Klymak
2003-11-15  9:47   ` Artur Hefczyc
2003-11-17 13:39   ` Kevin Dziulko
     [not found] ` <mailman.86.1068840578.399.help-gnu-emacs@gnu.org>
2003-11-14 21:33   ` Bruce Ingalls
2003-11-14 22:01     ` Stefan Monnier
2003-11-14 23:15   ` David Rasmussen
     [not found]     ` <mailman.117.1068862385.399.help-gnu-emacs@gnu.org>
2003-11-15 11:06       ` David Rasmussen
2003-11-15 12:43         ` Bruce Ingalls
2003-11-15 12:47           ` David Rasmussen
     [not found] ` <david.rasmussen@gmx.net>
2003-11-14 19:07   ` Peter S Galbraith
2003-11-15  1:11   ` Peter S Galbraith
2003-11-15 15:09 ` David Rasmussen
2003-11-15 16:50   ` Artur Hefczyc

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=87n0axzn28.fsf@141-moc-9.acn.waw.pl \
    --to=dontkobit@spamplusnet.mepl \
    /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).