mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
chore: improve error messages
This commit is contained in:
parent
03d627a20d
commit
3fed359a0f
1 changed files with 4 additions and 4 deletions
|
@ -61,7 +61,7 @@ pub fn parse_selection_string(s: &str) -> Result<(String, Selection), ParseSelec
|
|||
|
||||
if is_primary && primary_idx.is_some() {
|
||||
return Err(ParseSelectionError::MoreThanOnePrimary(format!(
|
||||
"{:?} {:?}",
|
||||
"Can only have 1 primary selection: {:?} {:?}",
|
||||
left, s
|
||||
)));
|
||||
}
|
||||
|
@ -121,12 +121,12 @@ pub fn parse_selection_string(s: &str) -> Result<(String, Selection), ParseSelec
|
|||
|
||||
if head_at_beg {
|
||||
return Err(ParseSelectionError::MissingClosingPair(format!(
|
||||
"Missing end `{}#` {:?} {:?}",
|
||||
"Missing end `{}#`: {:?} {:?}",
|
||||
close_pair, left, s
|
||||
)));
|
||||
} else {
|
||||
return Err(ParseSelectionError::MissingClosingPair(format!(
|
||||
"Missing end `|{}#` {:?} {:?}",
|
||||
"Missing end `|{}#`: {:?} {:?}",
|
||||
close_pair, left, s
|
||||
)));
|
||||
}
|
||||
|
@ -136,7 +136,7 @@ pub fn parse_selection_string(s: &str) -> Result<(String, Selection), ParseSelec
|
|||
Some(i) => i,
|
||||
None => {
|
||||
return Err(ParseSelectionError::MissingPrimary(format!(
|
||||
"Missing primary `#[|]#` {:?}",
|
||||
"Missing primary `#[|]#:` {:?}",
|
||||
s
|
||||
)));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue