Re: [R] Disabling the auto-complete feature in named list indexing

2008-10-22 Thread Peter Dalgaard
Pradheep K E wrote: Is there any way to disable the auto-complete feature when we index a named list? E.g: a <- list ('longname'=1, 'anothername'=2) a$l will return 1 and a$a will return 2 the '[[' operator behaves in the same way, the '[' operator does not do autocomplete. Is there any way to d

[R] Disabling the auto-complete feature in named list indexing

2008-10-22 Thread Pradheep K E
Is there any way to disable the auto-complete feature when we index a named list? E.g: a <- list ('longname'=1, 'anothername'=2) a$l will return 1 and a$a will return 2 the '[[' operator behaves in the same way, the '[' operator does not do autocomplete. Is there any way to disable autocomplete fo