1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
\input texinfo @c -*-texinfo-*-
@finalout
@c %**start of header
@setfilename kde-emacs-tips
@settitle KDE Emacs usefull programming tips
@footnotestyle end
@c @setchapternewpage odd !! we don't want blank pages
@c %**end of header
@dircategory Emacs
@direntry
* KDE Emacs: (kde-emacs). Emacs mode for editing KDE/QT C++/C code.
@end direntry
@ifnottex
Copyright @copyright{} 2002 Zack Rusin and KDE Development Team
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled
"Documentation License".
@end ifnottex
@titlepage
@sp 10
@center @titlefont{KDE Emacs Package}
@sp 2
@center @subtitlefont{KDE Emacs package documentation and programming tips.}
@sp 2
@author Zack Rusin
@page
@vskip 0pt plus 1filll
Copyright @copyright{} 2002 Zack Rusin & KDE Development Team
@sp 1
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3
or any later version published by the Free Software Foundation;
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
A copy of the license is included in the section entitled
"Documentation License".
@end titlepage
@node Top, Introduction, (dir), (dir)
@comment node-name, next, previous, up
@macro kdeemacs
KDE Emacs
@end macro
@ifinfo
@top @kdeemacs{}
@kdeemacs{} is an Emacs package with tons of useful features
which ease KDE development process.
KDE Emacs usefull programming tips.
@end ifinfo
@menu
* Introduction::
* Getting Connected::
* Generating stubs::
* Tips::
* Documentation License::
@end menu
@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@node Introduction, Getting Connected, Top, Top
@comment node-name, next, previous, up
@chapter Introduction
@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@node Getting Connected, Generating stubs, Introduction, Top
@comment node-name, next, previous, up
@chapter Getting Connected
@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@menu
* Sect. 2.1:: Installation
* Sect. 2.2:: Files
* Sect. 2.3:: Keybindings
@end menu
@node Sect. 2.1, Sect. 2.2, Chapter 2, Chapter 2
@section @code{Installation}
@comment node-name, next, previous, up
@node Sect. 2.2, Sect. 2.3, Sect. 2.1, Chapter 2
@section @code{Files}
@comment node-name, next, previous, up
@node Sect. 2.3, , Sect 2.2, Chapter 2
@section @code{Keybindings}
@comment node-name, next, previous, up
@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@node Generating stubs , Tips, Getting Connected, Top
@comment node-name, next, previous, up
@chapter Generating stubs
@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@node Tips, Documentation License, Generating stubs, Top
@comment node-name, next, previous, up
@chapter Tips
@comment !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
@sp 1
@strong{Q.} @emph{How do I hide #ifdef's in source files without
actually changing them?}
@strong{A.} Use @code{hide-ifdef-mode} which supports hiding of ifdef
blocks without actually changing the file. In this mode @kbd{C-c @@
C-d} hides ifdef block and @kbd{C-c @@ C-s} shows it again.
@sp 1
@strong{Q.} @emph{How do I get more information about the keybindings
of the currently active modes?}
@strong{A.} Type @kbd{M-x describe-mode}.
@sp 1
@strong{Q.} @emph{How do I get automatic syntax higlighting of my
custom types?}
@strong{A.} Use a package named @file{ctypes.el} which does exactly
that.
@sp 1
@strong{Q.} @emph{Is it possible to highlight dangerous syntax, just
like Borland JBuilder does it?}
@strong{A.} Yes, use the @file{cwarn.el} package.
@sp 1
@strong{Q.} @emph{How do I easily customize Emacs faces/colors?}
@strong{A.} Use the @file{color-theme.el} package.
@sp 1
@strong{Q.} @emph{How do I set the taskbar Emacs identification string?}
@strong{A.} To your @file{.emacs} add a line like:
@example
(setq frame-title-format "%b (%m)")
@end example
which will display ``filename (mode)'' type of string in the
taskbar. Type @kbd{C-h v frame-title-format} to get more info.
@sp 1
@strong{Q.} @emph{Can I make Emacs jump to the matching parenthesis
with @kbd{%} just like vi?}
@strong{A.} Yes, just add to your @file{.emacs} something like:
@example
;; Make the % key jump to the matching {}[]() if on another, like VI
(global-set-key "%" 'match-paren)
(defun match-paren (arg)
"Go to the matching parenthesis if on parenthesis otherwise insert %."
(interactive "p")
(cond ((looking-at "\\s\(") (forward-list 1) (backward-char 1))
((looking-at "\\s\)") (forward-char 1) (backward-list 1))
(t (self-insert-command (or arg 1)))))
@end example
@sp 1
@strong{Q.} @emph{Can I have words like FIXME, TODO, HACK or NOTE
higlighted in documentation strings?}
@strong{A.} Yes, either use @file{code-keywords.el} package or wait
till I'll add it to @kdeemacs{}.
@sp 1
@strong{Q.} @emph{I really, really hate identifiersNamedLikeThis. I'd
like to change them to identifiers_named_like_this but the
maintainer of the application/library that I'm hacking on doesn't
agree with me. What can I do? }
@strong{A.} Use the @file{glasses.el} package which changes
identifiersNamedLikeThis to identifiers_named_like_this in the
buffers you're editing and switches them back to their original form
once you save those buffers.
@sp 1
@strong{Q.} @emph{Is it possible to get function completion or
signature display in Emacs? Will it ever be done?}
@strong{A.} Yes and yes. I've been planning on doing this for quite a
while and hopefully will have this finished pretty soon (no dates
though :) ) The first thing that should be done is writing a few
fixes for the Semantic package (@file{c.bnf} to be more exact),
because Semantic doesn't handle templates, member function declared
as const or KDE access specifiers, once this is done all that will be
left is using semanticdb package which efficiently stores and retrieves
large amounts of tokens and then displaying tokens belonging to types at
point which match current context.
@sp 1
@strong{Q.} @emph{Is there a package that would highlight changes that
I made to a certain file?}
@strong{A.} I wouldn't be writing this if there wouldn't - try
@kbd{M-x highlight-changes-mode}.
@sp 1
@strong{Q.} @emph{How to get a diff between the stuff I have in my
local buffer and the file on disk?}
@strong{A.} Use ibuffer package. After @kbd{M-x ibuffer} typing
@kbd{=} over a file will display a diff between the buffer and the
file on the disk.
@sp 1
@strong{Q.} @emph{I want to temporarily highlight certain variable in
a file, how to do it?}
@strong{A.} Type @kbd{M-x hi-lock-mode}, now @kbd{C-x w h
@emph{regexp} @key{RET} @emph{face} @key{RET}} highlights regexp with
face in the current file and @kbd{C-x w r @emph{regexp} @key{RET}}
unhighlights it.
@node Documentation License, Top, Tips, Top
@comment node-name, next, previous, up
@appendix GNU Free Documentation License
@include fdl.texi
@node Concept Index, , Variables Index, Top
@c node-name, next, previous, up
@unnumbered Concept Index
@printindex cp
@contents
@bye
|