machakann / vim-sandwich

Set of operators and textobjects to search/select/edit sandwiched texts.
1.44k stars 37 forks source link

sdf command can not delete complete function name #109

Closed sillybun closed 3 years ago

sillybun commented 3 years ago

For example:

self.__init__(a, b{cursor})

and press sdf will leave self out,

machakann commented 3 years ago

That's because self is neither a function nor a method. It's an instance. Anyway, you can change the behavior as you want. Use g:sandwich#magicchar#f#patterns or b:sandwich_magicchar_f_patterns. Check out :help sandwich-miscellaneous or #71, #105.

sillybun commented 3 years ago

Excellent, thank you!