mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-06 12:27:42 +03:00
refactor(helix-view): remove cfg_attr references a nonexistent feature (#5630)
Fixes https://github.com/helix-editor/helix/issues/5615
This commit is contained in:
parent
d99a720536
commit
c8d77cfdb5
2 changed files with 0 additions and 4 deletions
|
@ -251,7 +251,6 @@ impl Rect {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub enum Color {
|
pub enum Color {
|
||||||
Reset,
|
Reset,
|
||||||
Black,
|
Black,
|
||||||
|
@ -353,7 +352,6 @@ bitflags! {
|
||||||
///
|
///
|
||||||
/// let m = Modifier::BOLD | Modifier::ITALIC;
|
/// let m = Modifier::BOLD | Modifier::ITALIC;
|
||||||
/// ```
|
/// ```
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct Modifier: u16 {
|
pub struct Modifier: u16 {
|
||||||
const BOLD = 0b0000_0000_0001;
|
const BOLD = 0b0000_0000_0001;
|
||||||
const DIM = 0b0000_0000_0010;
|
const DIM = 0b0000_0000_0010;
|
||||||
|
@ -450,7 +448,6 @@ impl FromStr for Modifier {
|
||||||
/// );
|
/// );
|
||||||
/// ```
|
/// ```
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
|
|
||||||
pub struct Style {
|
pub struct Style {
|
||||||
pub fg: Option<Color>,
|
pub fg: Option<Color>,
|
||||||
pub bg: Option<Color>,
|
pub bg: Option<Color>,
|
||||||
|
|
|
@ -2,7 +2,6 @@ use bitflags::bitflags;
|
||||||
|
|
||||||
bitflags! {
|
bitflags! {
|
||||||
/// Represents key modifiers (shift, control, alt).
|
/// Represents key modifiers (shift, control, alt).
|
||||||
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
|
|
||||||
pub struct KeyModifiers: u8 {
|
pub struct KeyModifiers: u8 {
|
||||||
const SHIFT = 0b0000_0001;
|
const SHIFT = 0b0000_0001;
|
||||||
const CONTROL = 0b0000_0010;
|
const CONTROL = 0b0000_0010;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue