Ellen Agarwal

Results 26 comments of Ellen Agarwal

You might want to look into neotest, which would make this alot easier.

1. The only two parts that use parso are for determing what names are already in a file and if a completion should be suggested. The majority of the code...

What alternative caching/indexing layer would you suggest instead of sqlite3? Would it be possible to move autoimport to its own package so both rope and jedi can use it? The...

> I would strongly prefer this being part of Jedi I want to explore the options available before concluding rewriting around a thousand lines of code is the only option....

Its probably possible, but it'd be slower and harder for little gain.

I am working on that. I'll use the modified times of the packages to keep track of modules that need to be updated. I'm also going to release the rope...

In the sqllite implementation under #469 there is an option to pass a list of ignored names. I used this in https://github.com/python-lsp/python-lsp-server/pull/199 to ignore names already defined in the file.

I'll fix this after #473, you can assign it to me. I'll use a global configuration file.

It requires a submodule to be there - ie the package must have more than one file. build is problematic because 1. The user may not have it installed 2....

I've messed around with removing the patchedast. It provides two things: 1. Sorted children, which afaik isn't directly used 2. Region of code. Since rope reads everything into a single...