Project

General

Profile

Using TAGS table in emacs » History » Version 1

Alex V Koval, 10/18/2012 05:59 PM

1 1 Alex V Koval
h1. Using TAGS table in emacs
2
3
When Rope fails to find definition (usually due to meta classes used in Django), you can use standard Emacs feature: TAGS to find
4
this tag.
5
6
 * M-/ - calls function find-tag
7
8
Also, to make tags for project you need to find tags:
9
<pre>
10
exuberant-ctags -e -R --languages=python
11
</pre>
12
13
P.S. Useful to have project fab command "fab make_tags"