On 16-Feb-2002 Derek Cunningham wrote:
> Shaleh,
>
> Is it possible to have blackbox recognize the ~ in it's .blackboxrc file? I
> know at least a few people encounter this problem when using blackbox, and
> IMHO, it just makes SENSE to have it understand ~.
>
It should. There is code in there to handle turning ~ into HOME. This is the
main issue with supporting ~/ -- there is no OS or library support, you have
to code it yourself.
if (string[0] == ~) {
sprintf(string, "%s/%s", HOME, string[2]);
}
or whatever. And no, the blackbox code is not that silly.
Where specifically are you having problems with ~/ support?