Skip to content

Commit db34cd6

Browse files
committed
split true by default
1 parent 495ffa9 commit db34cd6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

book/src/configuration/sidebar/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,16 +83,16 @@ show_nicklist = true
8383

8484
When `show_nicklist` is enabled, controls how the vertical space is split between the buffer list and the nicklist.
8585

86-
- `false`: buffer list shrinks; nicklist takes the remaining space.
8786
- `true`: buffer list and nicklist use proportional space controlled by `buflist_space` and `nicklist_space`.
87+
- `false`: buffer list shrinks; nicklist takes the remaining space.
8888

8989
```toml
9090
# Type: bool
9191
# Values: true, false
92-
# Default: false
92+
# Default: true
9393

9494
[sidebar]
95-
split = true
95+
split = false
9696
```
9797

9898
### buflist_space

data/src/config/sidebar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ impl Default for Sidebar {
3939
unread_indicator: UnreadIndicator::default(),
4040
position: Position::default(),
4141
show_nicklist: false,
42-
split: false,
42+
split: true,
4343
buflist_space: 2,
4444
nicklist_space: 1,
4545
order_by: OrderBy::default(),

0 commit comments

Comments
 (0)