David Dorfman

Results 10 issues of David Dorfman

## WHAT Adds a new boolean option (`ENHANCD_FILTER_ABBREV`) that controls abbreviation of the home directory prefix (determined by `$HOME`) to `~` when searching interactively. Implemented for both zsh and fish....

When attempting to elide a path string that contains empty components we get an error: ```console Traceback (most recent call last): File "/usr/local/lib/python3.10/site-packages/IPython/terminal/ptutils.py", line 115, in get_completions cursor_position = document.cursor_position...

needs-info

To find everything that resides on GH, including organization repos, files, branches, tags, releases, issues, PRs, and discussions.

good first issue
help wanted
feature

Would be helpful if could find all things stored in clickup :)

good first issue
feature

Add an option to exit `notifywait` if no event has been received for some amount of seconds.

Running strip-hints on a dataclass makes it invalid. strip-hints should warn about this and not strip type hints from it.

When encountering `typing.Protocol` classes, strip-hints doesn't strip the class definition, resulting in invalid syntax: ```python3 class Style(Protocol): #color: str #effect: str ``` which raises `IndentationError: expected an indented block`

For example: ```c #define A ((unsigned long) 1) #define B ((unsigned long) 2) #define C (A | B) ``` causes A, B and C to have string values like `"(A...

enhancement

The definition `struct X { int x : 16, y : 16; }` gets parsed incorrectly into the following tokens: ```python [, , , , , , , ] ```...