pappasam / jedi-language-server

A Python language server exclusively for Jedi. If Jedi supports it well, this language server should too.
MIT License
574 stars 44 forks source link

feature request: filter out special methods / magic methods from completion #314

Closed FelipeLema closed 2 months ago

FelipeLema commented 2 months ago

some, but not limited to:

__eq__
__ge__
__gt__
__le__
__lt__
__ne__
__dir__
__new__
__str__
pappasam commented 2 months ago

Have you tried out the completion.ignorePatterns configuration option? See: https://github.com/pappasam/jedi-language-server?tab=readme-ov-file#completionignorepatterns

FelipeLema commented 2 months ago

that'll do, thanks