Is it possible to configure zsh to suggest file names (or something else) inside a quoted string?
I saw this thread in bash: Bash Completing the TAB inside a double-quoted string But I'm not sure if this solution is compatible between shells.
No problem filling in tabs inside quotes.
$ touch "spaces in a filename" $ ls spaces in a filename $ ls sp[TAB] gives -> $ ls spaces\ in\ a\ filename $ ls "sp[TAB] gives -> $ ls "spaces in a filename"