mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
refactor test editor config
This commit is contained in:
parent
1db252913b
commit
a264faa98d
1 changed files with 11 additions and 7 deletions
|
@ -232,15 +232,19 @@ pub fn temp_file_with_contents<S: AsRef<str>>(
|
||||||
/// Generates a config with defaults more suitable for integration tests
|
/// Generates a config with defaults more suitable for integration tests
|
||||||
pub fn test_config() -> Config {
|
pub fn test_config() -> Config {
|
||||||
merge_keys(Config {
|
merge_keys(Config {
|
||||||
editor: helix_view::editor::Config {
|
editor: test_editor_config(),
|
||||||
lsp: LspConfig {
|
..Default::default()
|
||||||
enable: false,
|
})
|
||||||
..Default::default()
|
}
|
||||||
},
|
|
||||||
|
pub fn test_editor_config() -> helix_view::editor::Config {
|
||||||
|
helix_view::editor::Config {
|
||||||
|
lsp: LspConfig {
|
||||||
|
enable: false,
|
||||||
..Default::default()
|
..Default::default()
|
||||||
},
|
},
|
||||||
..Default::default()
|
..Default::default()
|
||||||
})
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Replaces all LF chars with the system's appropriate line feed
|
/// Replaces all LF chars with the system's appropriate line feed
|
||||||
|
@ -282,7 +286,7 @@ impl Default for AppBuilder {
|
||||||
fn default() -> Self {
|
fn default() -> Self {
|
||||||
Self {
|
Self {
|
||||||
args: Args::default(),
|
args: Args::default(),
|
||||||
config: Config::default(),
|
config: test_config(),
|
||||||
syn_conf: test_syntax_conf(None),
|
syn_conf: test_syntax_conf(None),
|
||||||
input: None,
|
input: None,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue