Michael
Michael
My use case is a private repository involving lazy-loading modules which are costly to load. I use this auto-complete a lot, so it's very beneficial for me. Searching on larger...
I appreciate the fast response and I understand; I also value prioritization Maybe you have some pointers on custom modification for my IDE? I don't know Jedi that well yet....
@davidhalter It's [here](https://github.com/ipython/ipython/blob/86d24741188b0cedd78ab080d498e775ed0e5272/IPython/core/completerlib.py#L236). This is not using static analysis. (BTW happy holidays 🎄, I'm heading to 🇨🇠soon—home of the Jedi.)
> This is just a fallback for people that don't want to use Jedi. Ah, interesting! Maybe I was looking at the wrong code. Fact is that if I type...
@wader Good find! It seems @fadado added this in 2019 with the comment _"Added operators priority table. Please, check the table validity, specially the new added operator `?//`"_ and seemingly...
I would like you to hear me differently. Right now, Terminus scrolls with an animation to the bottom, that is, `view.set_viewport_position((0, y), True)`. I would enjoy a custom setting in...
@abnerlee I don't know if this feature interests you, but if you want another Markdown editor as an inspiration, check [iAWriter](https://ia.net/writer). Its shortcut to move a line up is ⌘⌥↑...
@BsNoSi I'd like you to hear me differently. My intention was not to suggest using a different editor. My intention was to suggest to @abnerlee that if he wants an...
@alayamanas If this is possible on your system, try running ipdb directly: ```bash ipdb3 test.py ``` Since [several others](https://stackoverflow.com/q/55286610) (over 1000 reported views) have run into this as well, it...
@gotcha The most important thing to understand is what `python -m` does in Python3 (see my above post). After that, it boils down to moving most lines from `__main__.py` to...