Richard wrote:
>
> Thanks for the help guys, I am at the point where I can do soem
> development. I have the compiler set up and I made a new file called
> profiles.local which has the path to my bin. I downloaded XEMACS but
> han having troubles using it so at i am using kate. I don't know if
> any of you know of Ultra Edit or ConEdit. These are programs i use in
> windows for embedded development and they allow you to set up
> commands to handle the compiling for you. In the end this is what i
> want to have done in Linux, I spent some time and got the XEMACS help
> but am unable to figure out how to configure it. As for Kate I
> haven't really looked into it. One good thing i did like about kate
> is that it appears to have some c and c++ highlighting built in. This
> is another feature that I want and these things will ultimately help
> me to decide what to use. Any more help on these issues would be
> appreciated. As i said before I am fairly new to the Linux
> environment and well lets just say my best friend is the "man"
> command, I just wish that busy box had it lol.
Emacs has syntax highlighting built in for common languages. They call
it 'global-font-lock-mode'. Add the following to your ~/.emacs startup file:
(global-font-lock-mode 1)
(setq font-lock-maximum-decoration t)
(setq inhibit-splash-screen t)
(fset 'yes-or-no-p 'y-or-n-p) ; Treat 'y' or <CR> as yes, 'n' as no.
(when (not window-system) (menu-bar-mode nil))
(normal-erase-is-backspace-mode 0)
You can turn stuff off and off while its running through the menus but
its usually easier to configure through the ~/.emacs file.
You might also try GNU Emacs instead of Xemacs. It looks the same in an
X-windows environment and has the benefit of working in a text
environment as well.
Yahoo! Groups Links
<*> To visit your group on the web, go to:
http://groups.yahoo.com/group/ts-7000/
<*> Your email settings:
Individual Email | Traditional
<*> To change settings online go to:
http://groups.yahoo.com/group/ts-7000/join
(Yahoo! ID required)
<*> To change settings via email:
<*> To unsubscribe from this group, send an email to:
<*> Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
|