mirror of
https://github.com/davatorium/rofi.git
synced 2024-11-18 13:54:36 -05:00
fix typo (#1355)
This commit is contained in:
parent
3309d20ce0
commit
69c6004681
4 changed files with 4 additions and 4 deletions
|
@ -943,7 +943,7 @@ fzf sorting.
|
|||
\fB\fC\-max\-history\-size\fR \fInumber\fP
|
||||
|
||||
.PP
|
||||
Maximum number of entries to store in history. Defaults to 25. (WARNING: can cause slowdowns when set to high)
|
||||
Maximum number of entries to store in history. Defaults to 25. (WARNING: can cause slowdowns when set too high)
|
||||
|
||||
.SS Dmenu specific
|
||||
.PP
|
||||
|
|
|
@ -560,7 +560,7 @@ There are 2 sorting method:
|
|||
|
||||
`-max-history-size` *number*
|
||||
|
||||
Maximum number of entries to store in history. Defaults to 25. (WARNING: can cause slowdowns when set to high)
|
||||
Maximum number of entries to store in history. Defaults to 25. (WARNING: can cause slowdowns when set too high)
|
||||
|
||||
### Dmenu specific
|
||||
|
||||
|
|
|
@ -116,7 +116,7 @@ rofi.scroll-method: 0
|
|||
! rofi.color-active:
|
||||
! "Color scheme window" Set from: Default
|
||||
! rofi.color-window:
|
||||
! "Max history size (WARNING: can cause slowdowns when set to high)." Set from: Default
|
||||
! "Max history size (WARNING: can cause slowdowns when set too high)." Set from: Default
|
||||
! rofi.max-history-size: 25
|
||||
! "Hide the prefix mode prefix on the combi view." Set from: Default
|
||||
! rofi.combi-hide-mode-prefix: false
|
||||
|
|
|
@ -183,7 +183,7 @@ static XrmOption xrmOptions[] = {
|
|||
{ xrm_String, "theme", { .str = &config.theme }, NULL,
|
||||
"New style theme file", CONFIG_DEFAULT },
|
||||
{ xrm_Number, "max-history-size", { .num = &config.max_history_size }, NULL,
|
||||
"Max history size (WARNING: can cause slowdowns when set to high).", CONFIG_DEFAULT },
|
||||
"Max history size (WARNING: can cause slowdowns when set too high).", CONFIG_DEFAULT },
|
||||
{ xrm_Boolean, "combi-hide-mode-prefix", { .snum = &config.combi_hide_mode_prefix }, NULL,
|
||||
"Hide the prefix mode prefix on the combi view.", CONFIG_DEFAULT },
|
||||
{ xrm_Char, "matching-negate-char", { .charc = &config.matching_negate_char }, NULL,
|
||||
|
|
Loading…
Reference in a new issue