Giter VIP home page Giter VIP logo

vim-wordmotion's Introduction

More useful word motions for Vim

This is one word under Vim's definition:

CamelCaseACRONYMWords_underscore1234
w--------------------------------->w
e--------------------------------->e
b<---------------------------------b

With this plugin, this becomes six words:

CamelCaseACRONYMWords_underscore1234
w--->w-->w----->w---->w-------->w->w
e-->e-->e----->e--->e--------->e-->e
b<---b<--b<-----b<----b<--------b<-b

word definitions

A word (lowercase) is any of the following:

word Example
Camel case words [Camel][Case]
Acronyms [HTML]And[CSS]
Uppercase words [UPPERCASE] [WORDS]
Lowercase words [lowercase] [words]
Hex color codes [#0f0f0f]
Hex literals [0x00ffFF] [0x0f]
Octal literals [0o644] [0o0755]
Binary literals [0b01] [0b0011]
Regular numbers [1234] [5678]
Other characters [~!@#$]

A WORD (uppercase) is any sequence of non-space characters separated by spaces.

Customization

Default word/WORD mappings:

Mode Mapping
nxo w/W
nxo b/B
nxo e/E
nxo ge/gE
xo aw/aW
xo iw/iW
c <C-R><C-W>/<C-R><C-A>

You do NOT need any of the mapping customizations below if the default mappings already work for you.

g:wordmotion_prefix

Use g:wordmotion_prefix to apply a common prefix to each of the default word motion mappings.

g:wordmotion_mappings

Use g:wordmotion_mappings to individually replace the default word motion mappings. g:wordmotion_mappings is a dictionary where the keys are the default mappings and the values are the mappings that you want to replace them with. Unspecified entries will still use the default mappings. Entries set to an empty string will be disabled.

g:wordmotion_nomap

Use g:wordmotion_nomap to disable all of the default mappings. You can create your own mappings to the <Plug>WordMotion_ internal mappings. Since there are multiple modes involved for many of the mappings, it's probably more convenient to use g:wordmotion_prefix or g:wordmotion_mappings.

g:wordmotion_spaces

Use g:wordmotion_spaces to designate extra space characters. g:wordmotion_spaces is a list where each item is a regular expression for a character that you want to treat as a space. You have to make sure the regex matches a single character. You can use lookaheads and lookbehinds for context-sensitive space characters.

By default, these are treated as spaces in addition to the actual space characters:

  1. hyphens (-) between between alphabetic characters
  2. underscores (_) between alphanumeric characters

g:wordmotion_uppercase_spaces

Use g:wordmotion_uppercase_spaces to designate extra space characters for uppercase motions. These are separate from g:wordmotion_spaces. There are no extra space characters for uppercase motions by default.

vim-wordmotion's People

Contributors

chaoren avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.