mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
fix :indent-style
crash (#9087)
* removing unreachable statement in `:indent-style` * update checks when setting indent line and update docs * `cargo xtask docgen`
This commit is contained in:
parent
33d85606cf
commit
914c83420b
3 changed files with 6 additions and 6 deletions
|
@ -22,7 +22,7 @@ pub enum IndentStyle {
|
|||
|
||||
// 16 spaces
|
||||
const INDENTS: &str = " ";
|
||||
const MAX_INDENT: u8 = 16;
|
||||
pub const MAX_INDENT: u8 = 16;
|
||||
|
||||
impl IndentStyle {
|
||||
/// Creates an `IndentStyle` from an indentation string.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue