concord 2.3.0

A terminal user interface client for Discord
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod completions;
mod state;

pub use completions::{
    CommandPickerEntry, EmojiPickerEntry, MAX_MENTION_PICKER_VISIBLE, MentionPickerEntry,
    MentionPickerTarget,
};
// Pure emoji helpers shared with the emoji completion controller and the forum
// post submit path.
pub(in crate::tui::state) use completions::{
    expand_emoji_shortcodes, is_emoji_query_char, should_start_completion_query,
};
pub(super) use state::ComposerUiState;
pub use state::DmComposerLock;