From 2dc4d343ae6e2ecc3601e11da67e5efe68bb6dda Mon Sep 17 00:00:00 2001 From: etienne-k <2804556+etienne-k@users.noreply.github.com> Date: Fri, 1 Jul 2022 21:00:53 +0200 Subject: [PATCH] chore(statusline): Correct and add documentation --- helix-view/src/editor.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index 89dcedcc2..105ecdeb0 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -147,8 +147,9 @@ pub struct Config { /// Whether to display infoboxes. Defaults to true. pub auto_info: bool, pub file_picker: FilePickerConfig, - /// Shape for cursor in each mode + /// Configuration of the statusline elements pub status_line: StatusLineConfig, + /// Shape for cursor in each mode pub cursor_shape: CursorShapeConfig, /// Set to `true` to override automatic detection of terminal truecolor support in the event of a false negative. Defaults to `false`. pub true_color: bool,