dotfiles

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

formatters.talon (1019B)


      1 #provide both anchored and unachored commands via 'over'
      2 phrase <user.text>$: user.insert_formatted(text, "NOOP")
      3 phrase <user.text> over: user.insert_formatted(text, "NOOP")
      4 {user.prose_formatter} <user.prose>$: user.insert_formatted(prose, prose_formatter)
      5 {user.prose_formatter} <user.prose> over: user.insert_formatted(prose, prose_formatter)
      6 <user.format_text>+$: user.insert_many(format_text_list)
      7 <user.format_text>+ over: user.insert_many(format_text_list)
      8 <user.formatters> that: user.formatters_reformat_selection(user.formatters)
      9 word <user.word>: user.insert_formatted(user.word, "NOOP")
     10 format help | help format: user.formatters_help_toggle()
     11 recent list: user.toggle_phrase_history()
     12 recent repeat <number_small>: insert(user.get_recent_phrase(number_small))
     13 recent copy <number_small>: clip.set_text(user.get_recent_phrase(number_small))
     14 select that: user.select_last_phrase()
     15 nope that | scratch that: user.clear_last_phrase()
     16 nope that was <user.formatters>: user.formatters_reformat_last(formatters)