Re: about readline

2006-03-12 Thread Neil Jerram
William Xu <[EMAIL PROTECTED]> writes: > [...] > > That works. Thanks. And i thought maybe this function can be included in > readline module. It is very useful. Yes, I was thinking that too. I'll add it. Neil ___ Guile-user mailing list Guile-

Re: about readline

2006-03-12 Thread William Xu
Neil Jerram <[EMAIL PROTECTED]> writes: > William Xu <[EMAIL PROTECTED]> writes: > >> While this is a function? It seems the very variable is >> *readline-completion-function*, but which is not exported from the >> module? > > Yes. I guess the point is to protect the normal value of > *readline-c

Re: about readline

2006-03-11 Thread Neil Jerram
William Xu <[EMAIL PROTECTED]> writes: > While this is a function? It seems the very variable is > *readline-completion-function*, but which is not exported from the > module? Yes. I guess the point is to protect the normal value of *readline-completion-function* from being permanently lost. Is

Re: about readline

2006-03-11 Thread William Xu
Neil Jerram <[EMAIL PROTECTED]> writes: > William Xu <[EMAIL PROTECTED]> writes: > >> Hi, >> >> I'd like to control the completing candicates when doing readline >> completion. For instance, suppose there's a variable >> readline-completing-string with value "foo bar", then completions will >> be

Re: about readline

2006-03-11 Thread Neil Jerram
William Xu <[EMAIL PROTECTED]> writes: > Hi, > > I'd like to control the completing candicates when doing readline > completion. For instance, suppose there's a variable > readline-completing-string with value "foo bar", then completions will > be based on either "foo" or "bar". Is there such a v

about readline

2006-03-11 Thread William Xu
Hi, I'd like to control the completing candicates when doing readline completion. For instance, suppose there's a variable readline-completing-string with value "foo bar", then completions will be based on either "foo" or "bar". Is there such a variable in readline? -- William ___