find-and-till

Quickly jump to a character on your current line (like Vim's find and till)

aaronjensen

577

6

1.0.2

MIT

GitHub

Find and Till Build Status

Quickly jump to the next character you type on your current line. If you've used Vim, it's just like f and t and also vf and vt but without needing vim-mode.

find-and-till

Find (jump to just after letter) and Till (jump to just before character) are both supported in either the forward direction or the reverse and you can select while doing it.

Multiple cursors are supported.

There are currently no default bindings, but here are some examples:

'atom-text-editor':
  'ctrl-s': 'find-and-till:till'
  'ctrl-shift-s': 'find-and-till:select-till'
  'ctrl-r': 'find-and-till:till-backwards'
  'ctrl-shift-r': 'find-and-till:select-till-backwards'
  'ctrl-alt-s': 'find-and-till:find'
  'ctrl-alt-shift-s': 'find-and-till:select-find'
  'ctrl-alt-r': 'find-and-till:find-backwards'
  'ctrl-alt-shift-r': 'find-and-till:select-find-backwards'

Todo