Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add Python plug-in to Gnu Global

my gtags verion is gtags - GNU GLOBAL 5.9.2

I downloaded a python plug-in for Gnu Global here

copy the globalrc.example to ~/.globalrc

copy the script/python_global_tags.py to ~/bin/python_global_tags.py which is in my $PATH

type: "gtags" in a directory of python files

no complain

type: "global -f test.py"

no output

but "global -g" works, I wander if it is just a wrapper of grep

My Question is:

  • Is it even possible to write a plugin in python itself?
  • Is there a tutorial for configuring the ~/.globalrc, tutoials in offical site mention so little about that.

Thanks a lot,

gnu global is rising, but still supports so few languages btw

like image 996
sfszh Avatar asked Apr 14 '11 09:04

sfszh


1 Answers

Just for those arriving at this page via Google: now GNU Global does support Python (and more) via a wonderful Pygments-based plugin:

https://github.com/yoshizow/global-pygments-plugin

Just follow the README, the only note is that in my case gtags produced empty files for big file trees, possibly due to heavy use of symlinks; the solution is to use find as advised in the manual:

find . -name '*.py' >/tmp/list     # make a file set
gtags -f /tmp/list                 # and use it

Now one can either search for definitions

global -x main     # suppose you have at least one main() somewhere in the code

or references

global -rsx sys                    # this is likely to list *all* your modules

or even search for possible completions for incomplete tags:

global -cs OrderedD                # -c: "complete", -s: "non-local references"
like image 195
ジョージ Avatar answered Oct 16 '22 03:10

ジョージ