Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

how to allow tab completion in `flag=complete_me` ? (ie after a customizable symbol like `=`)



```
$ dmd -of ~/READ[TAB] => TAB completion works
$ dmd -of=~/READ[TAB] => no TAB completion because preceeded by `=`
```

how would I customize the separators after which TAB completion operates?
Ideally something analog to $WORDCHARS (eg: $TAB_COMPLETION_CHARS, eg:
```
export TAB_COMPLETION_CHARS=":= "
```

Please let me know if anything is unclear


Messages sorted by: Reverse Date, Date, Thread, Author