]> code.delx.au - gnu-emacs-elpa/blob - packages/ggtags/README.rst
Merge commit '2ef6263c65a109b4d36503e6484fdbf4cb307d0f' from company
[gnu-emacs-elpa] / packages / ggtags / README.rst
1 =========================================================
2 Emacs frontend to GNU Global source code tagging system
3 =========================================================
4
5 This package is part of `GNU ELPA <http://elpa.gnu.org>`_ (``M-x
6 list-packages``) and is also available on `MELPA
7 <http://melpa.milkbox.net/#/ggtags>`_.
8
9 The goal is to make working with GNU Global in Emacs as effortlessly
10 and intuitively as possible and to integrate tightly with standard
11 emacs packages. ``ggtags.el`` is tested in emacs 24.1, 24.2, 24.3,
12 24.4 and trunk. Patches, feature requests and bug reports are welcome.
13 Thanks.
14
15 Features
16 ~~~~~~~~
17
18 #. Build on ``compile.el`` for asynchronicity and its large
19 feature-set.
20 #. Automatically update Global's tag files when needed with tuning for
21 large source trees.
22 #. Intuitive navigation among multiple matches with mode-line display
23 of current match, total matches and exit status.
24 #. Read tag with completion.
25 #. Show definition at point.
26 #. Jump to #include files.
27 #. Support search history and saving a search to register/bookmark.
28 #. Query replace.
29 #. Manage Global's environment variables on a per-project basis.
30 #. Highlight (definition) tag at point.
31 #. Abbreviated display of file names.
32 #. Support all Global search backends: ``grep``, ``idutils`` etc.
33 #. Support `exuberant ctags <http://ctags.sourceforge.net/>`_ backend.
34 #. Support all Global's output formats: ``grep``, ``ctags-x``,
35 ``cscope`` etc.
36 #. Support projects on remote hosts (e.g. via ``tramp``).
37 #. Support eldoc.
38 #. Search ``GTAGSLIBPATH`` for references and symbols.
39
40 Screenshot
41 ~~~~~~~~~~
42
43 .. figure:: http://i.imgur.com/wx8ZPGe.png
44 :width: 500px
45 :target: http://i.imgur.com/wx8ZPGe.png
46 :alt: ggtags.png
47
48 Why GNU Global
49 ~~~~~~~~~~~~~~
50
51 The opengrok project composed a feature comparison `table
52 <https://github.com/OpenGrok/OpenGrok/wiki/Comparison-with-Similar-Tools>`_
53 between a few tools.
54
55 Install Global and plugins
56 ~~~~~~~~~~~~~~~~~~~~~~~~~~
57
58 1. Compile and install Global with ``exuberant-ctags``
59 ::
60
61 ./configure --prefix=<PREFIX> --with-exuberant-ctags=/usr/local/bin/ctags
62 make && make install
63
64 The executable ``ctags`` is unfortunately named because ``emacs`` also
65 includes a command of the same name. So make sure it is from
66 http://ctags.sourceforge.net. See ``plugin-factory/README`` in GNU
67 Global source for further information.
68
69 2. Install ``pygments`` plugin
70
71 The ``pygments`` plugin has been included in ``global`` since
72 version ``6.3.2``. ``pip install pygments`` is the only step
73 required. Note the plugin is not activated by the default
74 ``gtags.conf`` or ``.globalrc``. See
75 ``global/plugin-factory/PLUGIN_HOWTO.pygments`` for details.
76
77 The following instructions are for older ``global``.
78 ::
79
80 pip install pygments
81 git clone https://github.com/yoshizow/global-pygments-plugin.git
82 cd global-pygments-plugin/
83 sh reconf.sh
84 ./configure --prefix=<PREFIX> --with-exuberant-ctags=/usr/local/bin/ctags
85 make && make install
86 cp sample.globalrc $HOME/.globalrc
87
88 Make sure the value of ``<PREFIX>`` agree with step 1.
89
90 Config
91 ~~~~~~
92
93 Global with ``exuberant-ctags`` and ``pygments`` plugins can support
94 dozens of programming languages. For example, to enable
95 ``ggtags-mode`` for C/C++/Java modes::
96
97 (add-hook 'c-mode-common-hook
98 (lambda ()
99 (when (derived-mode-p 'c-mode 'c++-mode 'java-mode)
100 (ggtags-mode 1))))
101
102 Also see https://github.com/leoliu/ggtags/wiki for more examples.
103
104 Usage
105 ~~~~~
106
107 Open any file in a project and type ``M-x ggtags-mode``. Use ``M-.``
108 (``ggtags-find-tag-dwim``) to find the tag at point. If the project
109 has not been indexed (i.e. no ``GTAGS`` file exists), ``ggtags`` will
110 ask for the project root directory and index it recursively.
111 Alternatively one can invoke ``ggtags-create-tags`` to index a
112 directory. The mode line will display the directory name next to the
113 buffer name. If point is at a valid definition tag, it is underlined.
114
115 ``ggtags`` is similar to the standard ``etags`` package. For example
116 these keys ``M-.``, ``M-,``, ``M-*`` and ``C-M-.`` should work as
117 expected in ``ggtags-mode``.
118
119 The following search commands are available:
120
121 ggtags-find-tag-dwim
122
123 Find a tag by context.
124
125 If point is at a definition tag, find references, and vice versa.
126 If point is at a line that matches ``ggtags-include-pattern``, find
127 the include file instead.
128
129 To force finding a definition tag, call it with a prefix (``C-u``).
130
131 ggtags-find-tag-mouse
132
133 Like ``ggtags-find-tag-dwim`` but suitable for binding to mouse
134 events.
135
136 ggtags-find-definition
137
138 Find definition tags. With ``C-u`` ask for the tag name with
139 completion.
140
141 ggtags-find-reference
142
143 Find reference tags. With ``C-u`` ask for the tag name with completion.
144
145 ggtags-find-other-symbol
146
147 Find tags that have no definitions. With ``C-u`` ask for the tag
148 name with completion.
149
150 ggtags-find-tag-regexp
151
152 Find definition tags matching a regexp. By default it lists all
153 matching tags in the project. With ``C-u`` restrict the lists to a
154 directory of choice.
155
156 ggtags-idutils-query
157
158 Use idutils to find matches.
159
160 ggtags-grep
161
162 Grep for lines matching a regexp. This is usually the slowest.
163
164 ggtags-find-file
165
166 Find a file from all the files indexed by ``gtags``.
167
168 ggtags-query-replace
169
170 Do a query replace in all files found in a search.
171
172 Handling multiple matches
173 +++++++++++++++++++++++++
174
175 When a search finds multiple matches, a buffer named
176 ``*ggtags-global*`` is popped up and ``ggtags-navigation-mode`` is
177 turned on to facilitate locating the right match.
178 ``ggtags-navigation-mode`` makes a few commands in the
179 ``*ggtags-global*`` buffer globally accessible:
180
181 ``M-n``
182
183 Move to the next match.
184
185 ``M-p``
186
187 Move to the previous match.
188
189 ``M-}``
190
191 Move to next file.
192
193 ``M-{``
194
195 Move to previous file.
196
197 ``M-<``
198
199 Move to the first match.
200
201 ``M->``
202
203 Move to the last match.
204
205 ``C-M-s`` or ``M-s s``
206
207 Use ``isearch`` to find the match.
208
209 ``RET``
210
211 Found the right match so exit navigation mode. Resumable by ``M-,``
212 (``tags-loop-continue``).
213
214 ``M-*``
215
216 Abort and go back to the location where the search was started.
217
218 Miscellaneous commands
219 ++++++++++++++++++++++
220
221 Commands are avaiable from the ``Ggtags`` menu in ``ggtags-mode``.
222
223 ggtags-prev-mark
224
225 Move to the previously (older) visited location. Unlike ``M-*``
226 this doesn't delete the location from the tag ring.
227
228 ggtags-next-mark
229
230 Move to the next (newer) visited location.
231
232 ggtags-view-tag-history
233
234 Pop to a buffer listing all visited locations from newest to
235 oldest. The buffer is a next error buffer and works with standard
236 commands ``next-error`` and ``previous-error``. In addition ``TAB``
237 and ``S-TAB`` move to next/prev entry, and ``RET`` visits the
238 location. ``M-n`` and ``M-p`` move to and display the next/previous
239 entry.
240
241 ggtags-view-search-history
242
243 View or re-run past searches as kept in
244 ``ggtags-global-search-history``.
245
246 ggtags-kill-file-buffers
247
248 Kill all file-visiting buffers of current project.
249
250 ggtags-toggle-project-read-only
251
252 Toggle opening files in ``read-only`` mode. Handy if the main
253 purpose of source navigation is to read code.
254
255 ggtags-visit-project-root
256
257 Open the project root directory in ``dired``.
258
259 ggtags-delete-tags
260
261 Delete the GTAGS, GRTAGS, GPATH and ID files of current project.
262
263 ggtags-browse-file-as-hypertext
264
265 Use ``htags`` to generate HTML of the source tree. This allows
266 browsing the porject in a browser with cross-references.
267
268 Integration with other packages
269 +++++++++++++++++++++++++++++++
270
271 * eldoc
272
273 ``Eldoc`` support can be enabled by, for example, setting this in
274 the desired major mode with:
275
276 ::
277
278 (setq-local eldoc-documentation-function #'ggtags-eldoc-function)
279
280 * imenu
281
282 Emacs major modes usually have excellent support for ``imenu`` so
283 this is not enabled by default. To use:
284 ::
285
286 (setq-local imenu-create-index-function #'ggtags-build-imenu-index)
287
288 * hippie-exp
289 ::
290
291 (setq-local hippie-expand-try-functions-list
292 (cons 'ggtags-try-complete-tag hippie-expand-try-functions-list))
293
294 * company
295
296 ``company`` can use ``ggtags`` as completion source via
297 ``company-capf`` which is enabled by default.
298
299 * helm
300
301 If ``helm-mode`` is enabled ``ggtags`` will use it for completion if
302 ``ggtags-completing-read-function`` is nil.
303
304 NEWS
305 ~~~~
306
307 [2014-09-12 Fri] 0.8.6
308 ++++++++++++++++++++++
309
310 #. ``ggtags-show-definition`` shows definition with font locking.
311
312
313 [2014-06-22 Sun] 0.8.5
314 ++++++++++++++++++++++
315
316 #. New command ``ggtags-find-tag-mouse`` for mouse support.
317 #. New command ``ggtags-find-definition``.
318 #. Variable ``ggtags-completing-read-function`` restored.
319 #. ``ggtags-navigation-isearch-forward`` can also be invoked using
320 ``M-s s``.
321 #. Command ``ggtags-global-rerun-search`` renamed to
322 ``ggtags-view-search-history``.
323 #. The output buffer from ``ggtags-view-search-history`` looks
324 cleaner.
325 #. Search history items can be re-arranged with ``C-k`` and ``C-y``.
326
327 [2014-05-06 Tue] 0.8.4
328 ++++++++++++++++++++++
329
330 #. ``M-.`` (``ggtags-find-tag-dwim``) is smarter on new files.
331 #. Always update tags for current file on save.
332 #. Can continue search ``GTAGSLIBPATH`` if search turns up 0 matches.
333 Customisable via ``ggtags-global-search-libpath-for-reference``.
334
335 [2014-04-12 Sat] 0.8.3
336 ++++++++++++++++++++++
337
338 #. Tweak mode-line ligter in ``ggtags-navigation-mode``.
339
340 [2014-04-05 Sat] 0.8.2
341 ++++++++++++++++++++++
342
343 #. Default ``ggtags-auto-jump-to-match`` to ``history``.
344 #. Add eldoc support; see ``ggtags-eldoc-function``.
345 #. Improved support for tramp.
346
347 [2014-03-30 Sun] 0.8.1
348 ++++++++++++++++++++++
349
350 #. Improve ``ggtags-view-tag-history`` and tag history navigation.
351 #. New customsable variable ``ggtags-global-use-color``.
352 #. Automatically jump to match from location stored in search history.
353 See ``ggtags-auto-jump-to-match``.
354 #. Rename ``ggtags-supress-navigation-keys`` to
355 ``ggtags-enable-navigation-keys`` with a better way to suppress
356 navigation key bindings in some buffers including
357 ``*ggtags-global*`` buffer.
358
359 [2014-03-24 Mon] 0.8.0
360 ++++++++++++++++++++++
361
362 #. Record search history and re-run past searches.
363 #. Bookmark or save search to register.
364 #. New command ``ggtags-show-definition``.
365 #. Project name on mode line.
366 #. Automatically use ``.globalrc`` or ``gtags.conf`` file at project
367 root.
368 #. Better completion based on tag types.
369 #. Use colored output to get column number for jumping to tag.
370 #. Improve detection of stale GTAGS file based on file modification
371 time.
372 #. New customisable variables ``ggtags-executable-directory``,
373 ``ggtags-global-always-update``, ``ggtags-mode-sticky`` and
374 ``ggtags-supress-navigation-keys``.
375 #. Other bug fixes.
376
377 Bugs
378 ~~~~
379
380 https://github.com/leoliu/ggtags/issues