DetachHead

Results 673 issues of DetachHead

in my project, cargo is installed to a python virtual environment using https://github.com/konstin/rustup-pypi. this works with the language server thanks to the `rust-analyzer.server.path` setting: ```jsonc // .vscode/settings.json { "rust-analyzer.server.path": ".venv/bin/rust-analyzer"...

C-feature

i often accidentally double click inlay hints, and it's difficult to tell when it happens on third party or standard library code because it's obviously not version controlled. it would...

C-feature

**What problem does the feature request solve?** instead of having its own auto update system (which causes issues like #1037), r2modman should include an update url in its metadata so...

feature

### Checklist - [ ] This feature I'm requesting is already implemented in yt-dlp. - [x] This feature is merely a UI/UX update. - [x] This feature is suitable for...

enhancement
new issue

i stumbled across this library while trying to familiarize myself with the lspx codebase, since i'm still interested in working on https://github.com/thefrontside/lspx/issues/13. i'm having trouble wrapping my head around what...

### What is the issue and how can we reproduce it? 1. open a chrome incognito window 2. Open the sample https://sdk.openui5.org/#/entity/sap.m.Input/sample/sap.m.sample.InputValueState 3. wait for the page to load 4....

bug
in progress

### Summary ```py # foo.pyi def foo[T](): ... type Foo = int ``` ``` Cannot use type parameter lists on Python 3.8 (syntax was added in Python 3.12) Cannot use...

needs-decision

the current default behavior is unsafe, see https://play.ty.dev/b92b01eb-09da-48ea-8e4b-02812d27a803 ```py a = [1] # inferred as list[Unknown | int] a.append("i'm not an int") # no error a.pop() + 1 # runtime...

bidirectional inference
type-inference

**Is your enhancement request related to a problem? Please describe.** i'm seeing these errors from the robotcode vscode extension: ``` foo.py(2, 1): Importing test library 'tests.sandpit.foo' failed: ImportError: cannot import...

enhancement

# Bug report ### Bug description: ```python from pathlib import Path path = Path("foo.txt") path.write_text("foo\r\nbar") print(path.read_bytes()) # b'foo\r\r\nbar' ``` i know i can workaround this behavior by passing `newline=""` to...

type-feature
topic-IO
pending