"Shawn O. Pearce" <spearce@xxxxxxxxxxx> wrote: > --- Roadmap --- > > Looking ahead, I'd like to see some improvement in the following > areas. It would be nice if some Tcl/Tk-minded individuals were > willing to dive and help. ;-) I also want to get file change notification integrated into git-gui. Basic idea is, if you edit a file in your editor of choice, git-gui should notice it right away, without waiting for you to press the damn Rescan button. On Windows the only thing that actually works there (aside from drawing lots and lots of blue pixels) is a fancy little file monitoring API. That actually works quite well. Nothing else on that OS works of course, but it will tell you when a file changes. NT 4.0 and later only... ;-) Apparently the Linux folks have this new fangled inotify thing that is also good at telling applications about changed files. It seems the hg folks are using it to speed up "hg status" by having a background daemon keep track of which files are dirty, and which aren't. So I'm likely to want to try to implement something like this for core Git and for git-gui, but my primary development system is Mac OS X, where the BSD gods have only given us kqueue() and all its warts... (it is basically useless for this task of monitoring a "huge" tree like git.git, Mozilla.git need not apply). -- Shawn. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html