| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- package config
- type (
- NavigationKeys struct {
- SelectPrevious string `toml:"select_previous"`
- SelectNext string `toml:"select_next"`
- SelectFirst string `toml:"select_first"`
- SelectLast string `toml:"select_last"`
- }
- Keys struct {
- FocusGuildsTree string `toml:"focus_guilds_tree"`
- FocusMessagesText string `toml:"focus_messages_text"`
- FocusMessageInput string `toml:"focus_message_input"`
- ToggleGuildsTree string `toml:"toggle_guilds_tree"`
- GuildsTree GuildsTreeKeys `toml:"guilds_tree"`
- MessagesText MessagesTextKeys `toml:"messages_text"`
- MessageInput MessageInputKeys `toml:"message_input"`
- Autocomplete AutocompleteKeys `toml:"autocomplete"`
- Logout string `toml:"logout"`
- Quit string `toml:"quit"`
- }
- GuildsTreeKeys struct {
- NavigationKeys
- SelectCurrent string `toml:"select_current"`
- YankID string `toml:"yank_id"`
- CollapseParentNode string `toml:"collapse_parent_node"`
- MoveToParentNode string `toml:"move_to_parent_node"`
- }
- MessagesTextKeys struct {
- NavigationKeys
- SelectReply string `toml:"select_reply"`
- Reply string `toml:"reply"`
- ReplyMention string `toml:"reply_mention"`
- Cancel string `toml:"cancel"`
- Delete string `toml:"delete"`
- Open string `toml:"open"`
- YankContent string `toml:"yank_content"`
- YankURL string `toml:"yank_url"`
- YankID string `toml:"yank_id"`
- }
- MessageInputKeys struct {
- Send string `toml:"send"`
- Editor string `toml:"editor"`
- Cancel string `toml:"cancel"`
- TabComplete string `toml:"tab_complete"`
- }
- AutocompleteKeys struct {
- Up string `toml:"up"`
- Down string `toml:"down"`
- }
- )
|