mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 11:27:46 +03:00
Indent with tabs by default (#3095)
This commit is contained in:
parent
b6c700fce9
commit
b05fcaadad
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ use crate::{DocumentId, Editor, ViewId};
|
|||
/// 8kB of buffer space for encoding and decoding `Rope`s.
|
||||
const BUF_SIZE: usize = 8192;
|
||||
|
||||
const DEFAULT_INDENT: IndentStyle = IndentStyle::Spaces(4);
|
||||
const DEFAULT_INDENT: IndentStyle = IndentStyle::Tabs;
|
||||
|
||||
pub const SCRATCH_BUFFER_NAME: &str = "[scratch]";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue