1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::def_attribute;

def_attribute!(
    /// Defines a cursor_index attribute. For more information, see `use_editable`.
    cursor_index,
    /// Defines a cursor_color attribute. For more information, see `use_editable`.
    cursor_color,
    /// Defines a cursor_mode attribute. For more information, see `use_editable`.
    cursor_mode,
    /// Defines a cursor_id attribute. For more information, see `use_editable`.
    cursor_id,
    /// Defines a highlights attribute. For more information, see `use_editable`.
    highlights,
    /// Defines a highlight_color attribute. For more information, see `use_editable`.
    highlight_color,
    /// Defines a highlight_mode attribute. For more information, see `use_editable`.
    highlight_mode,
);