From c6796874c2b25e72f4a9eeb17e4569bcc2a84406 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Tue, 4 Apr 2023 11:32:55 -0600 Subject: [PATCH] core: Removed invisible keystrokes for Twitter related actions --- src/keystrokeEditor/actions/__init__.py | 2 +- src/keystrokeEditor/actions/twitter.py | 61 ------------------------- 2 files changed, 1 insertion(+), 62 deletions(-) delete mode 100644 src/keystrokeEditor/actions/twitter.py diff --git a/src/keystrokeEditor/actions/__init__.py b/src/keystrokeEditor/actions/__init__.py index 779fef19..f18d4a6f 100644 --- a/src/keystrokeEditor/actions/__init__.py +++ b/src/keystrokeEditor/actions/__init__.py @@ -1 +1 @@ -from . import twitter, mastodon \ No newline at end of file +from . import mastodon \ No newline at end of file diff --git a/src/keystrokeEditor/actions/twitter.py b/src/keystrokeEditor/actions/twitter.py deleted file mode 100644 index cb44b127..00000000 --- a/src/keystrokeEditor/actions/twitter.py +++ /dev/null @@ -1,61 +0,0 @@ -# -*- coding: utf-8 -*- -actions = { - "up": _(u"Go up in the current buffer"), - "down": _(u"Go down in the current buffer"), - "left": _(u"Go to the previous buffer"), - "right": _(u"Go to the next buffer"), - "next_account": _(u"Focus the next session"), - "previous_account": _(u"Focus the previous session"), - "show_hide": _(u"Show or hide the GUI"), - "post_tweet": _(u"New tweet"), - "post_reply": _(u"Reply"), - "post_retweet": _(u"Retweet"), - "send_dm": _(u"Send direct message"), - "add_to_favourites": _(u"Like a tweet"), - "toggle_like": _(u"Like/unlike a tweet"), - "remove_from_favourites": _(u"Unlike a tweet"), - "follow": _(u"Open the user actions dialogue"), - "user_details": _(u"See user details"), - "view_item": _(u"Show tweet"), - "exit": _(u"Quit"), - "open_timeline": _(u"Open user timeline"), - "remove_buffer": _(u"Destroy buffer"), - "interact": _(u"Interact with the currently focused tweet."), - "url": _(u"Open URL"), - "open_in_browser": _(u"View in Twitter"), - "volume_up": _(u"Increase volume by 5%"), - "volume_down": _(u"Decrease volume by 5%"), - "go_home": _(u"Jump to the first element of a buffer"), - "go_end": _(u"Jump to the last element of the current buffer"), - "go_page_up": _(u"Jump 20 elements up in the current buffer"), - "go_page_down": _(u"Jump 20 elements down in the current buffer"), - "update_profile": _(u"Edit profile"), - "delete": _(u"Delete a tweet or direct message"), - "clear_buffer": _(u"Empty the current buffer"), - "repeat_item": _(u"Repeat last item"), - "copy_to_clipboard": _(u"Copy to clipboard"), - "add_to_list": _(u"Add to list"), - "remove_from_list": _(u"Remove from list"), - "toggle_buffer_mute": _(u"Mute/unmute the active buffer"), - "toggle_session_mute": _(u"Mute/unmute the current session"), - "toggle_autoread": _(u"toggle the automatic reading of incoming tweets in the active buffer"), - "search": _(u"Search on twitter"), - "find": _(u"Find a string in the currently focused buffer"), - "edit_keystrokes": _(u"Show the keystroke editor"), - "view_user_lists": _(u"Show lists for a specified user"), - "get_more_items": _(u"load previous items"), - "reverse_geocode": _(u"Get geolocation"), - "view_reverse_geocode": _(u"Display the tweet's geolocation in a dialog"), - "get_trending_topics": _(u"Create a trending topics buffer"), - "open_conversation": _(u"View conversation"), - "check_for_updates": _(u"Check and download updates"), - "lists_manager": _(u"Opens the list manager, which allows you to create, edit, delete and open lists in buffers."), - "configuration": _(u"Opens the global settings dialogue"), - "list_manager": _(u"Opens the list manager"), - "accountConfiguration": _(u"Opens the account settings dialogue"), - "audio": _(u"Try to play a media file"), - "update_buffer": _(u"Updates the buffer and retrieves possible lost items there."), - "ocr_image": _(u"Extracts the text from a picture and displays the result in a dialog."), - "add_alias": _("Adds an alias to an user"), -} - \ No newline at end of file