There's an infinite loop in locate_file(), on line 37:
parent = os.path.dirname(editor_file)
should be
parent = os.path.dirname(parent)
But there still will be an infinite loop because os.path.dirname('/') == '/'.
I patched it here:
http://github.com/fmarcia/zen-coding-gedit/commit/6a473046b80ba63de7705c6a55082b
750f206474#diff-1
hth
Original issue reported on code.google.com by franck.marcia@gmail.com on 26 May 2010 at 9:46
Original issue reported on code.google.com by
franck.marcia@gmail.com
on 26 May 2010 at 9:46