Skip to main content

Questions tagged [autocomplete]

A feature provided by interactive programs such as shells and text editors that inserts text to complete a word or phrase that the user is likely intending to compose.

0 votes
0 answers
14 views

I'd like to use my current zsh autocompletion setup but filter out some of the results. I've set up an autocompletion file and put it in my fpath so that it gets autoloaded. But there's one critical ...
sasquires's user avatar
  • 135
1 vote
1 answer
91 views

Since Java 10 as I recall, we can run Java source files directly from the command line: bash $ java Math.java The JVM compiles and executes the file automatically. However, in zsh, tab autocompletion ...
menteith's user avatar
  • 292
2 votes
1 answer
319 views

After installing bash-completion on Debian testing (nearly Debian 13), completion works without any additional configuration in my normal user account. This is because of /etc/profile.d/...
cweiske's user avatar
  • 614
1 vote
0 answers
29 views

How can I get Bash to list the first (or all) commands that match a given glob? For example, let's say I'm looking for a command called cat. I can do type cat and it will search $PATH and tell me ...
k314159's user avatar
  • 523
0 votes
1 answer
67 views

I'm trying to filter bash-completion suggestions. Here awf-gtk2 -s abc.png [TAB] display -h --help -s --screenshot (it's ridiculous) / and awf-gtk2 -s[TAB] add a space after -s (perfect), with: ...
luigifab's user avatar
  • 101
4 votes
1 answer
610 views

In bash (Ubuntu 24.10, but I guess this would apply to other versions/distributions) when you type in a console a command you can use TAB to autocomplete the filenames of the current directory. ...
Mark's user avatar
  • 805
1 vote
1 answer
128 views

When making a custom zsh completion, the compadd function has the -Q option. The zsh documentation describes the -Q option as follows: -Q This flag instructs the completion code not to quote any ...
Trevor's user avatar
  • 1,749
1 vote
2 answers
288 views

In bash, when binding TAB with menu-complete, I can cycle through the current files in the lexicographical or alphabetic order. What if the file that I want is the last file in the order? How can I ...
Tim's user avatar
  • 107k

15 30 50 per page
1
2 3 4 5
59