Kai Groner
Kai Groner
Usually in a console program I am able to suspend it in order to do something else and then resume it. Glow disables the default signal handling (termios isig lflag)...
This PR fixes a crash when inspecting tables or types referencing enums that belong to an extension. I haven't figured out how to make the postgresql extension available for the...
This looks similar to #59, but with enums. The error occurs a little earlier, in `load_all_relations`. To reproduce this problem you need an extension containing composite type containing an enum....
The `_command_offset` function is provided by bash-completion. I'm not sure if this should assume that environment or offer any alternatives.
Running `strace desk run hello something` leads to desk deciding my shell is `strace`, so it invokes `strace -ic something`. This actually runs something, but without the requested desk environment...
This makes desk unusable in some pipelines (or any pipelines if you don't like guessing). This is a little complicated to reproduce. For instance, changing the first command from `ls`...
I found the first problem (unclosed typescriptTypeArguments) working backwards from the second problem (unclosed typescriptTemplateLiteralType), so I'm describing them both here. ```typescript declare let a: string; declare let b: string;...
If I'm not misunderstanding this, in order for libical to do the right thing it needs to have a timezone definition that includes daylight savings time. Currently we're using the...
There seems to be a limit, so while it will eventually finish, returning all occurrences ever probably isn't what the user really wants. The user can guard against this by...