|
Revision 1356, 1.1 kB
(checked in by alpt, 1 year ago)
|
TODO updated
|
| Line | |
|---|
| 1 |
* On Tue, Nov 27, 2007 at 06:42:09PM -0600, <Carl Wilhelm Soderstrom>: |
|---|
| 2 |
~> I'm just starting to try things out with closebracket. I want to say that |
|---|
| 3 |
~> one of the first things I do when learning about a program is try running it |
|---|
| 4 |
~> with a '--help' or '-h' option. |
|---|
| 5 |
~> |
|---|
| 6 |
~> I tried running '] --help', and it didn't do anything. :) so as a |
|---|
| 7 |
~> suggestion, I think it would be helpful if future versions accepted |
|---|
| 8 |
~> '--help', '-h', '-?' and maybe even '/?' (tho admittedly few people know DOS |
|---|
| 9 |
~> anymore) and provided a 'usage' menu. |
|---|
| 10 |
~> |
|---|
| 11 |
~> It would also be nice to have a way to dump the current 'aliases' or |
|---|
| 12 |
~> 'settings' (whatever you call the configuration); so you have a way to |
|---|
| 13 |
~> readily see what ']' and '][' will do without sorting through the config |
|---|
| 14 |
~> file. |
|---|
| 15 |
|
|---|
| 16 |
You're right. What about the following feature ? |
|---|
| 17 |
|
|---|
| 18 |
$ ] -h X |
|---|
| 19 |
]: I will do foo and bar to X |
|---|
| 20 |
|
|---|
| 21 |
* It would be nice to have this default behaviour in zsh: |
|---|
| 22 |
|
|---|
| 23 |
- ] dir = ls dir |
|---|
| 24 |
- ][ dir = cd dir |
|---|
| 25 |
|
|---|
| 26 |
instead of viceversa. |
|---|
| 27 |
|
|---|
| 28 |
because in zsh, to cd to dir, it's possible to do: |
|---|
| 29 |
|
|---|
| 30 |
- dir |
|---|
| 31 |
|
|---|
| 32 |
so ] dir is useless there. |
|---|
| 33 |
|
|---|
| 34 |
|
|---|