For example, say I moved a file from /project/file.cs
to /project/subdir/file.cs
. It would be nice if nautilus automatically converted this to bzr mv /project/file.cs /project/subdir/file.cs
. Is it possible to set this up?
It would also be nice if I was warned when doing a plain old mv
on version controlled files, but I suppose that's a separate question.
Like you already indicated yourself you basically need something that listens for moves, so I thought I'd code something up that would give you an indication of how this would work.
I tried using gio.FileMonitor but eventually went back to using plain old pyinotify because the latter has built-in support for detecting file renames/moves.
Here's how it works:
And we're back where we got started ;-)
[edit]
If you don't want to manually list the various directories to watch it might be a good idea to write a Nautilus extension which keeps track of the various working copies it encounters as you navigate. Here's something to get you started (this goes into
~/.nautilus/python-extensions
):I borrowed the various docstrings from RabbitVCS's extension code ;-)
In your monitor you'll probably want to watch the
workingcopies.db
file for additions and register watches on any new working copies it has found.Resources