Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add option to not exit after selecting an emoji #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,12 @@ Launch tuimoji with the `-s` or `--selection` command line argument:

tuimoji -s primary

### Do not exit after selecting an emoji

By default, tuimoji will exit after an emoji has been copied. To keep it running
instead, use the `-k` or `--keep-alive` command line argument:

tuimoji -k

## Acknowledgements

Expand Down
20 changes: 15 additions & 5 deletions tuimoji/tuimoji.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@ def keypress(self, size, key):


class CustomSelectableIcon(urwid.SelectableIcon):
def __init__(self, text, cursor_position, selection, *args, **kwargs):
def __init__(self, text, cursor_position, selection, keep_alive, *args, **kwargs):
self.selection = selection
self.keep_alive = keep_alive
return super().__init__(text, cursor_position, *args, **kwargs)

def keypress(self, size, key):
if key == 'enter':
self.paste(self.get_text()[0].split(' ')[0].encode('utf-8'))
raise urwid.ExitMainLoop()

if not self.keep_alive:
raise urwid.ExitMainLoop()
return key

def paste(self, contents):
Expand Down Expand Up @@ -64,8 +67,9 @@ def all_emojis(skin_tone):


class App():
def __init__(self, skin_tone='0', selection='clipboard'):
def __init__(self, skin_tone='0', selection='clipboard', keep_alive=False):
self.selection = selection
self.keep_alive = keep_alive
self.emoji_bank = all_emojis(skin_tone)
self.pane = urwid.GridFlow([], 21, 1, 1, 'left')
self.edit = CustomEdit('Search: ', on_enter=self.focus_results)
Expand Down Expand Up @@ -131,7 +135,8 @@ def show_emojis(self, widget, emojis):
text = CustomSelectableIcon(
'{} {}'.format(emoji['value'], name),
0,
self.selection
self.selection,
keep_alive=self.keep_alive
)
mapped = urwid.AttrMap(
text,
Expand Down Expand Up @@ -177,6 +182,7 @@ def main():
clip_help = 'X selection (clipboard) to use.' \
' Choices are "clipboard" (default), "primary" or "secondary".'
clip_choices = ['clipboard', 'primary', 'secondary']
keep_alive_help = 'Do not exit after an emoji has been copied.'
parser = argparse.ArgumentParser(description=description)
parser.add_argument(
'-t', '--tone', help=tone_help,
Expand All @@ -186,9 +192,13 @@ def main():
'-s', '--selection', help=clip_help,
default='clipboard', choices=clip_choices
)
parser.add_argument(
'-k', '--keep-alive', help=keep_alive_help,
action='store_true'
)
args = parser.parse_args()

app = App(skin_tone=args.tone, selection=args.selection)
app = App(skin_tone=args.tone, selection=args.selection, keep_alive=args.keep_alive)
widget = app.widget
loop = urwid.MainLoop(widget, palette=palette, unhandled_input=handle_keys)
loop.run()
Expand Down