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 `=`)
- X-seq: zsh-users 22395
- From: Timothee Cour <timothee.cour2@xxxxxxxxx>
- To: Zsh Users <zsh-users@xxxxxxx>
- Subject: how to allow tab completion in `flag=complete_me` ? (ie after a customizable symbol like `=`)
- Date: Mon, 16 Jan 2017 23:15:33 -0800
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=B68E8Tvn8p8+vB+l1RTVOMrFUDzH1SPzESZrbcc9GBA=; b=cupZgRYdPTjOeidBN54AnLHxXNvHCwW78nQqLGMRB16uLEL31PdSsu8eAnSoeO40ej qqnQe+ZUYS4b1Gn5bvJZGxTfIkwFaE2KqNb+FRrLQ0eyZqhOKlJYs4iMznPwqVBJT4I2 IkPFJ4KN6K4tjBH2eqK97b4UuF8R5ejojo1FF0T4kj/vTtFAB494LeP9W61QrMUIvOBG HmwDX1sctSmIYg/s/RmrwVCBJGY+BPzMI7pjjeF5jGMvflIr2J8Rt1xFA6CGHsKAEUdV zyxYB4sjUBFGJ5vqHpBshBjIy/ItoA+Q8v6uNpfFBK/uE9NBmVM7Fvgdewt5a26KZOQ4 JFdw==
- List-help: <mailto:zsh-users-help@zsh.org>
- List-id: Zsh Users List <zsh-users.zsh.org>
- List-post: <mailto:zsh-users@zsh.org>
- Mailing-list: contact zsh-users-help@xxxxxxx; run by ezmlm
```
$ 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