Frederik Eaton wrote:
Hi all,

I just installed a new version of ion3 and I'm experiencing the
following problem. Whenever I type <TAB> in one of ion's text boxes, I
get a list of completions, but nothing is added to the text I am
entering. For instance, if do the query_exec thing and type
"tru<TAB>", ion will display the completion "true", but it won't
insert an "e", even though there are no other completions.

$ ion --version
3ds-20050625

Should I send my config files as well? I'm pretty sure they haven't
changed, and I don't think I've had this problem before.

Frederik


Hi,

are you sure you have this correct binding in your config path ? :

bdoc("Try to complete the entered text or cycle through completions."),
    -- true => forward cycle through completions in auto-show-completions
    kpress("Tab", "WEdln.complete(_, true)"),
    -- false => do not cycle; force evaluation of new completions
    kpress("Control+Tab", "WEdln.complete(_, false)"),
    kpress("Shift+Tab", "WEdln.prev_completion(_)"),

this should be in your ~/.ion3/cfg_query.lua
You can obtain it in the ion-3 darcs repository : ion-3/etc/cfg_query.lua

Reply via email to