Mobile version of this pageIssueTrackerProduct 0.7.2 released
Next:
Weird spam? Or just a weird girl?
Related blogs
Keybinding ALT-F in JedGrep in Jed
Dabbrev in Jed
Make your settings in .Xdefaults come true
Gmail shortcuts
Geeking with Eterm and Tkinter
Jed looking like Emacs
Mvbackupfiles - a script to "delete" back autosaved backup files
Jed Tags with ntags (for dummies)
Heil Jed and Dave Kuhlman
Related by category
Geeking with tags file for Jed
ctags, sql methods, jed, tags, ntags
29th of May 2006
A little while ago I wrote about how I got Jed + TAGS to work thanks the ntags library. I've been using it now for a while and I love it! I doubt there are any IDEs that beats a swift combination of Ctrl+2 followed by Alt+. and you get the definition of a function or variable without losing any focus.
If you're not into programming stop reading now because it's going to get even more technical.
In a lot of my work, the .sql files are automatically converted to class methods according to a config file which effectively converts
- --selectfoo.sql
uid, name select * from names where ...
--foo.py-- class Something:
...into...:
--bar.py--
class Something:
def selectfoo(self, uid, name):
return _sqlquery("select * from ...."
Now, since the methods don't exist until you start the app, ctags will not be able to find these "SQL methods" which makes it a pain for me to dig out the right .sql file whilst programming. Fortuntely, writing to the ctags format was easier than I thought. Really all I had to do was to write a little python script and relink some executable scripts on my laptop. Now it works perfectly and exactly as I want it. Here's the code for the eager to copy :)







Save this page in del.icio.us