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

Text objects for Python.

Results 5 vim-textobj-python issues
Sort by recently updated
recently updated
newest added

Sorry there are many changes. I would appreciate it if you could merge it. * Support multiline typings. * FIx one-liner. Select by `v` mode. * Skip comments that the...

I want to call `textobj#python#function_select_[ai]` and `textobj#python#class_select_[ai]` in one mapping. First. call `function_select_[ai]` If `function_select_[ai]` fail, call `class_select_[ai]`

Consider the following fragment: ``` def f1(): # :1 code # :2 code # :3 code # :4 # :5 # :6 def f2(): # :7 code # :8 code...

In case I have a function call defined across multiple lines, is there any mapping to select the entire call? Otherwise, I would like to have such a text object.