bernardo-tui 0.2.7

A keyboard-only, distraction-free TUI widget library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
This serves as a fixed list of attention nodes Gladius knows how to handle. Each of them should act
as a "serializable" pill for main view, with enough data to switch and/or recreate "what I was
looking at before I navigated away from here". At this point, at least two kind of nodes must exits:
- editor view
- code results view (references)
 */

#[derive(Debug)]
pub enum AttentionNode {
    Editor {},
    CodeResultsView {},
}