freya_elements/attributes/
text_editing_attributes.rs

1use crate::def_attribute;
2
3def_attribute!(
4    /// Defines a cursor_index attribute. For more information, see `use_editable`.
5    cursor_index,
6    /// Defines a cursor_color attribute. For more information, see `use_editable`.
7    cursor_color,
8    /// Defines a cursor_mode attribute. For more information, see `use_editable`.
9    cursor_mode,
10    /// Defines a cursor_id attribute. For more information, see `use_editable`.
11    cursor_id,
12    /// Defines a highlights attribute. For more information, see `use_editable`.
13    highlights,
14    /// Defines a highlight_color attribute. For more information, see `use_editable`.
15    highlight_color,
16    /// Defines a highlight_mode attribute. For more information, see `use_editable`.
17    highlight_mode,
18);