| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- package config
- type (
- SelectionKeys struct {
- SelectPrevious string `toml:"select_previous"`
- SelectNext string `toml:"select_next"`
- SelectFirst string `toml:"select_first"`
- SelectLast string `toml:"select_last"`
- }
- GuildsTreeKeys struct {
- SelectionKeys
- SelectCurrent string `toml:"select_current"`
- YankID string `toml:"yank_id"`
- CollapseParentNode string `toml:"collapse_parent_node"`
- MoveToParentNode string `toml:"move_to_parent_node"`
- }
- MessagesListKeys struct {
- SelectionKeys
- ScrollUp string `toml:"scroll_up"`
- ScrollDown string `toml:"scroll_down"`
- ScrollTop string `toml:"scroll_top"`
- ScrollBottom string `toml:"scroll_bottom"`
- SelectReply string `toml:"select_reply"`
- Reply string `toml:"reply"`
- ReplyMention string `toml:"reply_mention"`
- Cancel string `toml:"cancel"`
- Edit string `toml:"edit"`
- Delete string `toml:"delete"`
- DeleteConfirm string `toml:"delete_confirm"`
- Open string `toml:"open"`
- YankContent string `toml:"yank_content"`
- YankURL string `toml:"yank_url"`
- YankID string `toml:"yank_id"`
- }
- MessageInputKeys struct {
- Paste string `toml:"paste"`
- Send string `toml:"send"`
- Cancel string `toml:"cancel"`
- TabComplete string `toml:"tab_complete"`
- OpenEditor string `toml:"open_editor"`
- OpenFilePicker string `toml:"open_file_picker"`
- }
- MentionsListKeys struct {
- SelectionKeys
- }
- Keys struct {
- FocusGuildsTree string `toml:"focus_guilds_tree"`
- FocusMessagesList string `toml:"focus_messages_list"`
- FocusMessageInput string `toml:"focus_message_input"`
- FocusPrevious string `toml:"focus_previous"`
- FocusNext string `toml:"focus_next"`
- ToggleGuildsTree string `toml:"toggle_guilds_tree"`
- GuildsTree GuildsTreeKeys `toml:"guilds_tree"`
- MessagesList MessagesListKeys `toml:"messages_list"`
- MessageInput MessageInputKeys `toml:"message_input"`
- MentionsList MentionsListKeys `toml:"mentions_list"`
- Logout string `toml:"logout"`
- Quit string `toml:"quit"`
- }
- )
|