diff options
author | Tobias Hunger | 2022-09-20 07:11:30 +0000 |
---|---|---|
committer | GitHub | 2022-09-20 07:11:30 +0000 |
commit | 130793dfd06306d1f9d25c150c2dc456cda3f9ed (patch) | |
tree | 843854ea3bf08c251d440fca7c80303f5150b9b5 /contrib/completion/hx.zsh | |
parent | 8988c1ecc757bb4d1c2372d8b8a78bae6a1fd85e (diff) |
Add command line parameter to specify log file (#3807)
* Add command line parameter to specify log file
I had the logs of my debug helix mixed in with the logs from the
production helix.
Add a `--log` command line argument to redirect any logs to other
files, making my debugging easier :-)
* Update completion files with `--log` argument
Diffstat (limited to 'contrib/completion/hx.zsh')
-rw-r--r-- | contrib/completion/hx.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/contrib/completion/hx.zsh b/contrib/completion/hx.zsh index e3375656..aaad6f84 100644 --- a/contrib/completion/hx.zsh +++ b/contrib/completion/hx.zsh @@ -18,6 +18,7 @@ _hx() { "--hsplit[Splits all given files horizontally into different windows]" \ "-c[Specifies a file to use for configuration]" \ "--config[Specifies a file to use for configuration]" \ + "--log[Specifies a file to write log data into]" \ "*:file:_files" case "$state" in |