makepad_code_editor/
settings.rs

1#[derive(Clone, Debug, Eq, Hash, PartialEq)]
2pub struct Settings {
3    pub tab_column_count: usize,
4    pub fold_level: usize,
5    pub word_separators: Vec<char>,
6}
7
8impl Default for Settings {
9    fn default() -> Self {
10        Self {
11            tab_column_count: 4,
12            fold_level: 2,
13            word_separators: vec![
14                ' ', '`', '~', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '-', '=', '+',
15                '[', '{', ']', '}', '\\', '|', ';', ':', '\'', '"', '.', '<', '>', '/', '?', ',',
16            ],
17        }
18    }
19}