Skip to content
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

Popup doc spills out of wrapping box #12681

Open
ndtoan96 opened this issue Jan 26, 2025 · 0 comments
Open

Popup doc spills out of wrapping box #12681

ndtoan96 opened this issue Jan 26, 2025 · 0 comments
Labels
C-bug Category: This is a bug

Comments

@ndtoan96
Copy link

Summary

Popup doc in insert mode spills out of the wrapping box, scrolling with Ctrl-u and Ctrl-d does not scroll the doc.

Screencast.From.2025-01-26.08-57-22.mp4

Reproduction Steps

  1. pip install fastapi[standard]
  2. open this code
from typing_extensions import Annotated
from  fastapi import FastAPI, Depends, Query

def global_dependency():
    print("xxx")

app = FastAPI(dependencies=[Depends(global_dependency)])

@app.get("/translate")
async def translate(text: Annotated[str, Query()]):
    pass

@app.get("/")
async def root():
    return "AI translator"
  1. Put the cursor between ( and ) of Query()
  2. Go to insert mode

Helix log

~/.cache/helix/helix.log

Platform

Linux (Fedora 41)

Terminal Emulator

kitty 0.38.1

Installation Method

dnf

Helix Version

helix 25.01.1 (81708b7)

@ndtoan96 ndtoan96 added the C-bug Category: This is a bug label Jan 26, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
C-bug Category: This is a bug
Projects
None yet
Development

No branches or pull requests

1 participant