mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 20:07:44 +03:00
Add --edit-config flag to directly open config.toml (#1771)
Co-authored-by: Gokul Soumya <gokulps15@gmail.com>
This commit is contained in:
parent
3f603b27f1
commit
8d7a25b4d4
4 changed files with 8 additions and 0 deletions
|
@ -5,6 +5,8 @@ To override global configuration parameters, create a `config.toml` file located
|
||||||
* Linux and Mac: `~/.config/helix/config.toml`
|
* Linux and Mac: `~/.config/helix/config.toml`
|
||||||
* Windows: `%AppData%\helix\config.toml`
|
* Windows: `%AppData%\helix\config.toml`
|
||||||
|
|
||||||
|
> Note: You may use `hx --edit-config` to create and edit the `config.toml` file.
|
||||||
|
|
||||||
Example config:
|
Example config:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
|
|
|
@ -113,6 +113,9 @@ impl Application {
|
||||||
editor.open(path, Action::VerticalSplit)?;
|
editor.open(path, Action::VerticalSplit)?;
|
||||||
// Unset path to prevent accidentally saving to the original tutor file.
|
// Unset path to prevent accidentally saving to the original tutor file.
|
||||||
doc_mut!(editor).set_path(None)?;
|
doc_mut!(editor).set_path(None)?;
|
||||||
|
} else if args.edit_config {
|
||||||
|
let path = conf_dir.join("config.toml");
|
||||||
|
editor.open(path, Action::VerticalSplit)?;
|
||||||
} else if !args.files.is_empty() {
|
} else if !args.files.is_empty() {
|
||||||
let first = &args.files[0].0; // we know it's not empty
|
let first = &args.files[0].0; // we know it's not empty
|
||||||
if first.is_dir() {
|
if first.is_dir() {
|
||||||
|
|
|
@ -11,6 +11,7 @@ pub struct Args {
|
||||||
pub load_tutor: bool,
|
pub load_tutor: bool,
|
||||||
pub verbosity: u64,
|
pub verbosity: u64,
|
||||||
pub files: Vec<(PathBuf, Position)>,
|
pub files: Vec<(PathBuf, Position)>,
|
||||||
|
pub edit_config: bool,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Args {
|
impl Args {
|
||||||
|
@ -26,6 +27,7 @@ impl Args {
|
||||||
"--version" => args.display_version = true,
|
"--version" => args.display_version = true,
|
||||||
"--help" => args.display_help = true,
|
"--help" => args.display_help = true,
|
||||||
"--tutor" => args.load_tutor = true,
|
"--tutor" => args.load_tutor = true,
|
||||||
|
"--edit-config" => args.edit_config = true,
|
||||||
"--health" => {
|
"--health" => {
|
||||||
args.health = true;
|
args.health = true;
|
||||||
args.health_arg = argv.next_if(|opt| !opt.starts_with('-'));
|
args.health_arg = argv.next_if(|opt| !opt.starts_with('-'));
|
||||||
|
|
|
@ -60,6 +60,7 @@ ARGS:
|
||||||
|
|
||||||
FLAGS:
|
FLAGS:
|
||||||
-h, --help Prints help information
|
-h, --help Prints help information
|
||||||
|
--edit-config Opens the helix config file
|
||||||
--tutor Loads the tutorial
|
--tutor Loads the tutorial
|
||||||
--health [LANG] Checks for potential errors in editor setup
|
--health [LANG] Checks for potential errors in editor setup
|
||||||
If given, checks for config errors in language LANG
|
If given, checks for config errors in language LANG
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue