Given a hive structure like below, with nested folders: > # tl-config -Ra /a/ > b/ > c/ > param3 = hej When tabcompleting the below commandline: > # tl-config /a/b/c/ On the first <TAB> press we don't get any suggestions, but the second time, it suggests: > /a/b/c/ /a/b/c/param3 This is wrong for two reasons: 1. The command "tl-config /a/b/c/" is not valid, it will produce the following error: > /a/b/c/: No such parameter Our point is that our tab completion shouldn't suggest paths that will cause errors. 2. It should suggest "/a/b/c/param3" right away, since its the only valid option.