dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

draft_window_open.talon (411B)


      1 # These are available when the draft window is open, but not necessarily focussed
      2 tag: user.draft_window_showing
      3 -
      4 draft hide: user.draft_hide()
      5 
      6 draft submit:
      7   content = user.draft_get_text()
      8   user.draft_hide()
      9   insert(content)
     10   # user.paste may be somewhat faster, but seems to be unreliable on MacOSX, see
     11   # https://github.com/talonvoice/talon/issues/254#issuecomment-789355238
     12   # user.paste(content)