summaryrefslogtreecommitdiff
path: root/tools/ctagsparse.py
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-04-13 01:16:03 +0200
committerRobin Gareus <robin@gareus.org>2016-04-13 01:16:03 +0200
commit5005aa529b448a641655c428c4ff810681c67320 (patch)
tree12fa3e83f97c3c0c09ace31dd46e88df8c2bc885 /tools/ctagsparse.py
parente77729125ec262b6a01e8fc22b236995cd37a7f6 (diff)
fix Plugin Pin for Audio + Midi input plugins
Diffstat (limited to 'tools/ctagsparse.py')
-rwxr-xr-xtools/ctagsparse.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/ctagsparse.py b/tools/ctagsparse.py
new file mode 100755
index 0000000000..989d40ca20
--- /dev/null
+++ b/tools/ctagsparse.py
@@ -0,0 +1,10 @@
+#!/usr/bin/python
+import csv
+
+# ctags -o /tmp/atag.csv --fields=+afiKkmnsSzt libs/ardour/ardour/export_format_specification.h
+
+f = open('/tmp/atag.csv', 'rb')
+reader = csv.reader(f, delimiter='\t')
+for row in reader:
+ if len(row) > 7:
+ print row[7]