vim-textobj-python
vim-textobj-python copied to clipboard
Text objects for Python.
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.