mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 03:17:45 +03:00
Properly prevent crossterm
features being used when feature = "term"
not enabled in helix-view
(#12734)
This commit is contained in:
parent
d285a8a9e5
commit
6906164177
2 changed files with 5 additions and 3 deletions
|
@ -122,10 +122,11 @@ mod external {
|
|||
Self::Tmux
|
||||
} else if binary_exists("pbcopy") && binary_exists("pbpaste") {
|
||||
Self::Pasteboard
|
||||
} else if cfg!(feature = "term") {
|
||||
Self::Termcode
|
||||
} else {
|
||||
Self::None
|
||||
#[cfg(feature = "term")]
|
||||
return Self::Termcode;
|
||||
#[cfg(not(feature = "term"))]
|
||||
return Self::None;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -342,6 +342,7 @@ impl FromStr for UnderlineStyle {
|
|||
}
|
||||
}
|
||||
|
||||
#[cfg(feature = "term")]
|
||||
impl From<UnderlineStyle> for crossterm::style::Attribute {
|
||||
fn from(style: UnderlineStyle) -> Self {
|
||||
match style {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue