Ellen Agarwal
Ellen Agarwal
https://github.com/mfussenegger/nvim-dap allows us to debug code inside of neovim. It'd be cool if we could automatically create configurations for competitive programming testcases (possibly by language) and maybe run those on...
Autoimport
I've been working on an autoimport plugin for [pylsp](https://github.com/python-lsp/python-lsp-server/pull/199). I'm wondering what would the feasibility of upstreaming this to mainline Jedi would be. The implementation consists of two parts: 1....
# Description Global config support Fixes #(issue) #243 # Checklist (delete if not relevant): - [ ] I have added tests that prove my fix is effective or that my...
It'd be nice if rope hosted its documentation on RTD. Remaining steps: - [x] Change Sphinx theme to RTD theme - [x] Host on RTD - [x] Test documentation works...
Could we use and configure the following tools in rope? 1. tox - testing across python versions. Would need to test from 3.6/7 to 3.10/3.11 2. isort - sorting the...
Pathlib
Use pathlib internally in Rope's resource, file and folder classes. This will allow more compatibility with other projects and increase speed. Resource should also implement os.PathLike. Steps to implement: 1....
Add docstrings to search results. This would be per-name, which causes the following issues: 1. Parsing for both import and ast needs docstring support - import should be trivial and...
# Motivation Say you have a large environment with a package (IE: Pytorch) that you mark as a dependency. While you plan to use pytorch, its dependents consume a lot...
# Description The main autoimport class has gotten quite large. This PR simplifies it by splitting out a Database object. It also adds an index function to unify indexing between...