Filling zsh inside quoted strings

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.

+5
source share
1 answer

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"
0
source

All Articles