mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
Fix dimensions CLI/manpage docs
This commit is contained in:
parent
b55e219bc4
commit
83d7f60449
3 changed files with 3 additions and 2 deletions
|
@ -34,6 +34,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- Reliably remove log file when Alacritty is closed and persistent logging is disabled
|
- Reliably remove log file when Alacritty is closed and persistent logging is disabled
|
||||||
- Remove selections when clearing the screen partially (scrolling horizontally in less)
|
- Remove selections when clearing the screen partially (scrolling horizontally in less)
|
||||||
- Crash/Freeze when shrinking the font size too far
|
- Crash/Freeze when shrinking the font size too far
|
||||||
|
- Documentation of the `--dimensions` flag have been updated to display the correct default
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
|
||||||
|
|
|
@ -50,7 +50,7 @@ Specify alternative configuration file [default: $XDG_CONFIG_HOME/alacritty/alac
|
||||||
.HP
|
.HP
|
||||||
\fB\-d\fR, \fB\-\-dimensions\fR <columns> <lines>
|
\fB\-d\fR, \fB\-\-dimensions\fR <columns> <lines>
|
||||||
.IP
|
.IP
|
||||||
Defines the window dimensions. Falls back to size specified by window manager if set to 0x0 [default: 80x24]
|
Defines the window dimensions. Falls back to size specified by window manager if set to 0x0 [default: 0x0]
|
||||||
.TP
|
.TP
|
||||||
\fB\-t\fR, \fB\-\-title\fR <title>
|
\fB\-t\fR, \fB\-\-title\fR <title>
|
||||||
Defines the window title [default: Alacritty]
|
Defines the window title [default: Alacritty]
|
||||||
|
|
|
@ -82,7 +82,7 @@ impl Options {
|
||||||
.short("d")
|
.short("d")
|
||||||
.value_names(&["columns", "lines"])
|
.value_names(&["columns", "lines"])
|
||||||
.help("Defines the window dimensions. Falls back to size specified by \
|
.help("Defines the window dimensions. Falls back to size specified by \
|
||||||
window manager if set to 0x0 [default: 80x24]"))
|
window manager if set to 0x0 [default: 0x0]"))
|
||||||
.arg(Arg::with_name("title")
|
.arg(Arg::with_name("title")
|
||||||
.long("title")
|
.long("title")
|
||||||
.short("t")
|
.short("t")
|
||||||
|
|
Loading…
Reference in a new issue