CamelCaseMotion icon indicating copy to clipboard operation
CamelCaseMotion copied to clipboard

A vim script to provide CamelCase motion through words (fork of inkarkat's camelcasemotion script)

Results 10 CamelCaseMotion issues
Sort by recently updated
recently updated
newest added

I'm no longer able to do things like `dw`. What causes this, if i can PR i'll try.

Normal vim behavior: - Start with the line "three words here". Put the cursor on the start of "words". - Typing 'dw' deletes "words" and also the space after it....

Given a string like `CamelCaseMot{caret}ion`, and the text caret is at the position marker `{caret}`, then `vi\w`, `vi\e` and `vi\b` all have the same effect and select the `Motion` "word"....

I'm sure there's a better way to do this but for me right now this works. Adds comma, space, and newline to list of regex to watch out for. Fixes...

Unlike vim's default iw, doing something like diw with CamelCaseMotion's iw on "word word" with the cursor on the first w will result in "word" instead of " word". If...

At the moment, the plugin doesn't allow to disable default mappings, it just suggests to override the ones you want to customize. This PR adds an option to disable **all**...

Hi there, Love this pluging and use it all the time. I recently installed [YankRing](https://github.com/vim-scripts/YankRing.vim) and had a weird thing happen with CamelCaseMotion: Moving the cursor still works fine (`e`...

What I am finding is that while CamelCaseMotion works great for camelCaseVariables and underscore_case_variables (though I have not tried it as much on those), it most certainly does not work...

Using the plugin on `SOME_VARIABLE` will move the cursor one character at the time, instead of moving it e.g. from `S` to `V` in the example above.

I have the mapping: ``` vim map w CamelCaseMotion_w ``` When I do `2cw` or `2dw`, it deletes two words the first time, but then when I repeat the action...