mirror of https://github.com/helix-editor/helix
add feature flag
parent
81243247c6
commit
279f5eddb3
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,11 @@
|
|||||||
|
#[cfg(feature = "steel")]
|
||||||
|
mod steel_implementations {
|
||||||
|
|
||||||
|
use crate::{
|
||||||
|
compositor::Component,
|
||||||
|
ui::{Popup, Text},
|
||||||
|
};
|
||||||
|
|
||||||
|
impl steel::rvals::Custom for Text {}
|
||||||
|
impl<T: steel::rvals::IntoSteelVal + Component> steel::rvals::Custom for Popup<T> {}
|
||||||
|
}
|
Loading…
Reference in New Issue