klorenz / atom-lazy-motion

Rapid cursor positioning with fuzzy search.

Home Page:https://atom.io/packages/lazy-motion

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

lazy-motion

Rapid cursor positioning with fuzzy, lazy search.

gif

Feature

  • Search word within buffer with fuzzy search by fuzzaldrin.
  • Display current / total match count in input panel and hover indicator.
  • Incrementally scroll(visit) to matched position.
  • Don't change cursor position unless you confirm(important for cursor-history like pakcage).
  • Differentiate color for top(blue) and bottom(red) entry of matches.
  • Highlight original cursor position while searching and flash current matching.
  • Flash screen if no match.
  • Support search history, and set cursor word as search text.

Why

Lets say you are editing over 200 lines of CoffeeScript file.
And you want to go to line where code @container?.destroy() is to change it.

With lazy-motion, you can reach target in following way.

  1. Invoke lazy-motion:forward from keymap.
  2. Input c?d to input panel.
  3. core:confirm to land or core:cancel to cancel.

Other examples

  • ca) to reach line containing cancel().
  • gemade to reach line containing @flashingDecoration?.getMarker().destroy().

Like the example above you can reach target position with very lazy and fuzzy key type.

Why label jump approach not worked for me.

Until now I released vim-smalls and its Atom port.

And also hacked jumpy and vim-easymotion as exercise to create smalls.

But as for me this label jump system not work, I couldn't adapt to it.

The reason is simple.

The label jump constrains me to enter label precisely which result in my concentration(or zone or flow) lost.

Of course this label jump packages let me reach target position with minimum key typing.
But in my opinion, its only good for demonstration.

In real world coding, the brain context switch the label jump enforces is too expensive to use on a daily basis.

Commands

atom-text-editor

  • lazy-motion:forward: Search forward.
  • lazy-motion:backward: Search backward.
  • lazy-motion:forward-again: Search last word again.
  • lazy-motion:backward-again: Search last word again.
  • lazy-motion:forward-cursor-word: Search with cursor word.
  • lazy-motion:backward-cursor-word: Search with cursor word.

atom-text-editor.lazy-motion

  • core:confirm: Confirm.
  • core:cancel: Cancel.
  • lazy-motion:set-history-next: Set next histroy as search word.
  • lazy-motion:set-history-prev: Set previous histroy as search word.
  • lazy-motion:set-cursor-word: Set cursor word as search word.

NOTE: Search always wrap from end-to-top or top-to-end.

Configuration

  • autoLand: Automatically land(confirm) if there is no other candidates.
  • minimumInputLength: Search start only when input length exceeds this value.
  • wordRegExp: Used to build candidate word list. See this for detail.
  • showHoverIndicator: Show hover indicator while searching.
  • historySize: Max length of history.
  • saveHistoryOnCancel: If false, canceled search won't saved to history.

Keymap

No keymap by default.
You need to set your own keymap in keymap.cson.

Nomal user

'atom-text-editor':
  'ctrl-s':     'lazy-motion:forward'
  'ctrl-cmd-r': 'lazy-motion:backward'

'atom-text-editor.lazy-motion':
  ']': 'lazy-motion:forward'
  '[': 'lazy-motion:backward'

Emacs user

'atom-text-editor':
  'ctrl-s': 'lazy-motion:forward'
  'ctrl-r': 'lazy-motion:backward'

'.platform-darwin atom-text-editor.lazy-motion':
  'ctrl-s': 'lazy-motion:forward'
  'ctrl-r': 'lazy-motion:backward'
  'ctrl-g': 'core:cancel'

My setting

'atom-text-editor.vim-mode.normal-mode, atom-text-editor.vim-mode.visual-mode':
  's':           'lazy-motion:forward'
  'ctrl-p':      'lazy-motion:forward-again'

'atom-text-editor.lazy-motion':
  'ctrl-u': 'editor:delete-to-beginning-of-line'
  ']':      'lazy-motion:forward'
  '[':      'lazy-motion:backward'
  ';':      'core:confirm'
  'ctrl-p': 'lazy-motion:set-history-prev'
  'ctrl-n': 'lazy-motion:set-history-next'
  'cmd-e':  'lazy-motion:set-cursor-word'

Change Style

Style used in lazy-motion is defined in main.less.
You can change style bye overwriting these style in your style.css.

e.g.

atom-text-editor::shadow {
  // Change border
  .lazy-motion-match.top .region {
    border-width: 1px;
  }
  .lazy-motion-match.bottom .region {
    border-width: 1px;
  }
  .lazy-motion-match.current .region {
    border-width: 2px;
  }
  // Change hover label
  .lazy-motion-hover {
    color: @text-color-selected;
    background-color: @syntax-selection-color;
    &.top {
      background-color: @syntax-color-renamed;
    }
    &.bottom {
      background-color: @syntax-color-removed;
    }
  }
}

Limitation

Slow in large buffer.

Tried to pre-generate candidate by observeTexitEditors but its not work.
Editing buffer with huge merkers is very slow.
So create marker on lazy-motion start and destroy on finish is better than that.

Language specific wordRegExp configuration.

You can specify wordRegExp configuration per language.

See Scoped Settings, Scopes and Scope Descriptors and API/Config for details.

  • in your config.cson.
"*": # This is global scope. Used as default.
  # <snip>
  "lazy-motion":
    wordRegExp: 'xxxx'
  # <snip>
".go.source": # This is Go specific,
  "lazy-motion":
    wordRegExp: 'xxxx'

TODO

  • Integrate to very similar my isearch package?
  • [] History support, inserting cursor word.
  • Restore fold if canceled.
  • Support language specific wordRegExp configuration.
  • Show hover indicator to inform current / total.
  • AutoLand if there is no other candidate.

About

Rapid cursor positioning with fuzzy search.

https://atom.io/packages/lazy-motion

License:MIT License


Languages

Language:CoffeeScript 91.2%Language:CSS 8.8%