vim-textobj-user icon indicating copy to clipboard operation
vim-textobj-user copied to clipboard

Vim plugin: Create your own text objects

Results 22 vim-textobj-user issues
Sort by recently updated
recently updated
newest added

Believe that's all I can say. What `--version` returns: ``` NVIM v0.2.0 Build type: RelWithDebInfo Compilation: /usr/bin/x86_64-linux-gnu-gcc -g -O2 -fPIE -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -DDISABLE_LOG -Wdate-time -D_FORTIFY_SOURCE=2 -Wconversion -U_FORTIFY_SOURCE...

I'm already using a bunch of plugins making use of `vim-textobj-user` and sometimes it's hard to remember what text-objects are contributed by which plugin, or what's available for the current...

When using user textobjs, the contents of the `*` register aren't preserved. Builtin textobjs preserve this register, so I would expect user textobjs to preserve it as well. Steps to...

Suppose the following: ``` if (a==b) begin : alabel func1(); func2(); end else begin func3(); func4(); end ``` It would be interesting if textobj could line-select (region-type=V) the lines between...

Hi, I don't know if I'm doing sth wrong but following code doesn't work for me: ``` vim call textobj#user#plugin('handyobjects', { 'underscores': { 'select-i': 'iu', 'select-a': 'au', '*pattern*': ["_", "_"]...

bug

If you highlight the left bracket in `hello []` and type `ci[`, the inside of the brackets will be selected to start replacing which is the default text object. As...

If a selection function is called when in visual mode, the function thinks that the cursor is positioned at the beginning of the selection, even if it is at the...

Several built-in text objects can be repeated to extend the current selection. For example, `vawawawaw...` and `vabababab...`. It's not trivial how to extend the current selection for each custom text...

I realize that you already know this problem very well. But since there is no issue on the issue tracker I figured I'd open one. Steps to reproduce (_ means...

I'm creating [text objects for LaTeX code](https://github.com/rbonvall/vim-textobj-latex). In LaTeX, inline equations can be typed `\(like this\)` or `$like this$`. I tried to create text objects for both with the following...