help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Can't find optopions


From: Szász Gergely
Subject: Re: Can't find optopions
Date: Fri, 20 Jul 2001 01:53:01 +0100
User-agent: Mozilla/5.0 (X11; U; Linux i586; en-US; rv:0.9.2) Gecko/20010710

Hi!


the 'syntax highlighting' (alias the 'global-font-lock-mode') is in

 Emacs => Faces => Font Lock => Global Font Lock Mode.

You can use: Help => Customise => Apropos...
 and type a regexp (e.g. global-font-lock)
 press [ENTER]
 and set (and may 'Save for Future Sessions')


there is no  'word wrap' (alias 'auto-fill-function') under the
 customisation groups (I think!) You set it just type anywhere in a buffer:
 (setq auto-fill-function 'do-auto-fill)
  and C-x C-e

 /and after that you may delete it :-) /

or you use the .emacs file

 this is my ~./emacs file:

--------------begin---------------
(define-key function-key-map [backspace] [?\b])
(global-set-key [delete] 'delete-char)
(global-set-key [backspace] 'backward-delete-char)
(delete-selection-mode t)
(custom-set-variables
 '(auto-fill-function 'do-auto-fill)
 '(fill-column 80)
 '(column-number-mode t)
 '(global-font-lock-mode t nil (font-lock)))
(custom-set-faces)
---------------end----------------



the first line make [backspace] and [delete] key different
(because default [backspace] translated to [delete]!
 and this is a funny thing :-(  )
the second line make [delete] to delete a char
the third line make [backspace] to delete backward a char
the fourth line make to replace highlighted text with what you type
the next lines set:
 -word wrap
 -wrap words at 80th column
 -print the cursor 'x' position (column) to the status bar
 -set highliting on

By!
  Gergely Szász




reply via email to

[Prev in Thread] Current Thread [Next in Thread]