Allan Rae <[EMAIL PROTECTED]> writes:
| Okay, but the file browser doesn't show anything with a *.lyx filter.
| It'd be nice to have extra entries (in a different font or colour) that
| show those files that exist in some hidden VC file. This would mean the
| VC support would get called to identify probable lyx files (*.lyx,v) in
| the current directory. Actually the VC would only need to return a mask
| for filtering. So the default filter would be say: "*.lyx", "*.lyx,v"
| or even:
| *.lyx *.lyx,v RCS/*.lyx,v
You know that after the addition of a realy regex class we can do
things like
"*.(lyx|lyx,v)"
If we did not massage the regex in the filedialog we could do
".*\.lyx(,v)*"
in the filebrowser. Making RCS/*.lyx,v work is harder since you then
have to scan another directory too, that would probably mean changes
to the filedialog.
Lgb