1
0
Fork 0
mirror of synced 2024-06-03 07:41:10 -04:00
zimfw/modules/input
Eric Nielsen d371d80af2
Unify the for syntax
For short single commands, prefer a one-liner `for` with the zsh syntax:
```
for x (foo bar) print ${x}
```
Otherwise just place `; do` on the same line as the POSIX `for ... in`:
```
for x in foo bar; do
  print ${x}
done
```

Closes #268
2018-04-25 08:59:19 -05:00
..
init.zsh Unify the for syntax 2018-04-25 08:59:19 -05:00
README.md [input] Fix typo in README 2016-12-01 23:51:59 -08:00

Input

Applies correct bindkeys for input events.

Without this module, you may experience oddities in how Zsh interprets input. For example, using the UP key, then using the back arrow and pressing DELETE may capatalize characters rather than delete them.

This module also provides double-dot parent directory expansion. It can be enabled by uncommenting zdouble_dot_expand='true' in your .zimrc