-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Only render the auto-complete menu if it intersects with signature help #5523
Closed
Conversation
This file contains 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
kirawi
added
A-helix-term
Area: Helix term improvements
S-waiting-on-review
Status: Awaiting review from a maintainer.
labels
Jan 13, 2023
kirawi
force-pushed
the
signature-completion-overlap_2
branch
from
January 13, 2023 19:06
1beea06
to
7ccb4c2
Compare
kirawi
added
the
E-testing-wanted
Call for participation: Experimental features suitable for testing
label
Jan 13, 2023
kirawi
force-pushed
the
signature-completion-overlap_2
branch
from
January 13, 2023 20:38
7ccb4c2
to
cdf81c1
Compare
kirawi
changed the title
Signature completion overlap
Only render the auto-complete menu if it intersects with signature help
Jan 14, 2023
sudormrfbin
reviewed
Feb 4, 2023
5 tasks
kirawi
force-pushed
the
signature-completion-overlap_2
branch
from
February 5, 2023 03:27
11e97c2
to
4ca0c93
Compare
Replaced by #5842 ? |
#5842 handles overlap of the completion popup and the documentation popup of the currently selected completion (the popup that gets rendered on the right of the completion popup) whereas this PR handles overlap of signature help and completion popup so it's different in scope. Both aim to improvement the popup experience :) |
kirawi
commented
Feb 9, 2023
Proful
reviewed
Feb 9, 2023
kirawi
removed
the
E-testing-wanted
Call for participation: Experimental features suitable for testing
label
Feb 11, 2023
kirawi
force-pushed
the
signature-completion-overlap_2
branch
from
February 12, 2023 01:56
e5becba
to
af6ab4d
Compare
This was referenced Feb 22, 2023
pascalkuthe
added a commit
to pascalkuthe/helix
that referenced
this pull request
Mar 30, 2023
pascalkuthe
added a commit
to pascalkuthe/helix
that referenced
this pull request
Mar 30, 2023
pascalkuthe
added a commit
to pascalkuthe/helix
that referenced
this pull request
Mar 30, 2023
pascalkuthe
added a commit
to pascalkuthe/helix
that referenced
this pull request
Mar 30, 2023
pascalkuthe
added a commit
to pascalkuthe/helix
that referenced
this pull request
Mar 31, 2023
pascalkuthe
added a commit
to pascalkuthe/helix
that referenced
this pull request
Mar 31, 2023
archseer
pushed a commit
that referenced
this pull request
Mar 31, 2023
Triton171
pushed a commit
to Triton171/helix
that referenced
this pull request
Jun 18, 2023
wes-adams
pushed a commit
to wes-adams/helix
that referenced
this pull request
Jul 4, 2023
smortime
pushed a commit
to smortime/helix
that referenced
this pull request
Jul 10, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
A-helix-term
Area: Helix term improvements
S-waiting-on-review
Status: Awaiting review from a maintainer.
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 #5495 because it required moving
Completion
into its own layer in the compositor. This one simply checks if the two intersect, and will always defer to the auto-complete menu if they do.Closes #3821