code-moniker 0.4.0

Standalone CLI / linter for the code-moniker symbol graph: file and directory probes, project-wide architecture rules.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(in crate::ui) enum TreePaneAction {
	MoveDown,
	MoveUp,
	Home,
	End,
	ToggleSelected,
	OpenSelected,
	CloseSelected,
}

#[derive(Clone, Debug, Eq, PartialEq)]
pub(in crate::ui) enum TreePaneNotice {
	Opened(String),
	Closed(String),
	MovedToParent,
	Noop,
}