Vim icon indicating copy to clipboard operation
Vim copied to clipboard

Enhance the search function for easymotion and support remote yank.

Open feeiyu opened this issue 2 years ago • 0 comments

What this PR does / why we need it:

  1. Enhance the search function for easy motion. search

  2. support remote yank remote_yank

  3. easy motion only search in visible area. visible_area

Which issue(s) this PR fixes fixes 8753

Special notes for your reviewer:

  • Add background color configuration for matched characters. vim.easymotionIncSearchBackgroundColor

  • The recommended custom mapping.

  "vim.normalModeKeyBindingsNonRecursive": [
    {
      "before": ["s"],
      "after": ["<leader>", "<leader>", "<leader>", "s"]
    },
    {
      "before": ["y", "r"],
      "after": ["<leader>", "<leader>", "<leader>", "y", "r"]
    }
  ]

feeiyu avatar Jan 31 '24 17:01 feeiyu