>From 9c6f3188d4d79fa10afd21fbd1e1d2aa6886a189 Mon Sep 17 00:00:00 2001 From: Matthieu Patou Date: Sun, 3 Nov 2013 00:35:37 -0700 Subject: [PATCH] Add flags for omnicpp so that omnicpp works correctly Signed-off-by: Matthieu Patou --- wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wscript b/wscript index 47b7b50..72370ba 100644 --- a/wscript +++ b/wscript @@ -208,7 +208,7 @@ def ctags(ctx): "build 'tags' file using ctags" import Utils source_root = os.path.dirname(Utils.g_module.root_path) - cmd = 'ctags --python-kinds=-i $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.) $(find %s -name "*.py")' % (source_root, source_root) + cmd = 'ctags --c++-kinds=+p --fields=+iaS --extra=+q --python-kinds=-i $(find %s -name "*.[ch]" | grep -v "*_proto\.h" | egrep -v \.inst\.) $(find %s -name "*.py")' % (source_root, source_root) print("Running: %s" % cmd) os.system(cmd) -- 1.8.1.2