Gentoo Archives: gentoo-dev

From: David Spreen <netzwurm@××××××.org>
To: gentoo-dev@g.o
Subject: [gentoo-dev] Deveopers HOWTO
Date: Sun, 20 Oct 2002 11:15:07
Message-Id: 87lm4t9jmq.fsf@foobar.toppoint.de
1 Hey there,
2 I sent a piece of emacs-code to Grant Goodyear to do in emacs
3 what you suggested for the .vimrc. I sent it to Grant because
4 I didn't see the note about this address at the end of the
5 page.
6
7 Okay, to switch to 4-spaces tab mode (even in shellscript-mode)
8 of emacs add the following lines to your .emacs:
9
10 --BEGIN
11 ;; gentoo check
12 (defun gentoo-check ()
13 (if (string-match "gentoo-x86\\|gentoo-src\\|portage"
14 (file-name-directory (buffer-file-name)))
15 (progn (set 'tab-width 4)
16 (set 'indent-tabs-mode 1)
17 (set (make-local-variable
18 'backward-delete-char-untabify-method) nil))))
19
20 (add-hook 'find-file-hooks 'gentoo-check)
21 --END
22
23 Additionally I want to ask how to contribute to the Documentation
24 of gentoo. I am interested in translating the HOWTO into german.
25 I am also interested in contributing in other ways (maybe
26 check ebuild bugs and so on.
27
28 so long...
29
30 David
31 --
32 |David Spreen | Debian GNU Developer |
33 |Email: netzwurm@××××××.org | http://www.debian.org/|
34 |------------------------------------------------------------------|
35 |1024D/C8B6823A: D72F 9DD2 808A CC90 6672 8459 95FC 446B C8B6 823A|

Replies

Subject Author
Re: [gentoo-dev] Deveopers HOWTO Matthew Kennedy <mkennedy@g.o>
Re: [gentoo-dev] Deveopers HOWTO Eric Stockbridge <stocke2@×××.net>