Feature/completion item/resolve#1
Closed
krassowski wants to merge 5 commits intopython-lsp:developfrom
Closed
Conversation
This was referenced Apr 25, 2021
Member
Author
|
After the fork became detached the changes from my old fork are no longer updated despite of me updating the branch. To work around this I created a branch on my new fork of the current detached fork. If anyone is interested, it was as simple as: cd python-language-server
# on the old fork of pyls
git add remote upstream-community git@github.com:python-lsp/python-lsp-server.git
git fetch upstream-community
git checkout develop
git merge upstream-community/develop
git checkout feature/completionItem/resolve
git rebase develop
# solve conflicts
git push -f
cd ../python-lsp-server
# on new fork of pylsp
git checkout -b krassowski-feature/completionItem/resolve develop
git push --set-upstream origin krassowski-feature/completionItem/resolve |
Member
Author
|
Superseded by #25. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Supersedes palantir/python-language-server#905.
eageroption to rope_completion and jedi_completion allow users using clients which cannot yet handlecompletionItem/resolveto restore to eager resolution (inside oftextDocument/completions)