Eric Nielsen
Eric Nielsen
Replacing `Union[int, str]` by just `int` or `str` in the code above works as expected.
Hi. Try commenting lines [95](https://github.com/zimfw/input/blob/bcff8c8504ea7efd0fc8c696dfdc8762e4bfbbb6/init.zsh#L95) and [104](https://github.com/zimfw/input/blob/bcff8c8504ea7efd0fc8c696dfdc8762e4bfbbb6/init.zsh#L104) from the init.zsh file in the input module and let us know if that fixes it.
What do you have bind to the tab key? Check running `bindkey "^I"` in your command prompt.
Hi @danielshahaf. What I'm trying to do with `compdump` is dump the completion configuration only after I update the git repositories of the external plugins I use. I'm trying this...
Maybe `_BORING_COMMANDS` could be deprecated in favor of other zsh options: * The `"^ "` regexp can be replaced by `HIST_IGNORE_SPACE`, which is BTW not set by default in zsh....
Giving it a second thought on `HIST_NO_STORE`, to be compatible with [what zsh actually does](https://github.com/zsh-users/zsh/blob/00d20ed15e18f5af682f0daec140d6b8383c479a/Src/hist.c#L1424-L1446), it might be better to do: ```zsh if [[ -o histnostore && ${cmd} == (builtin...
Zim is moving to an organization with separate repos for each plugin: https://github.com/zimframework/ The [Eriner/zim](https://github.com/Eriner/zim) repo will be deprecated once this move is done.
@jonathan, all the zim modules are also being maintained as separate repos inside the [zimfw](https://github.com/zimfw) organization. BTW zim's plan is to use those instead of the [modules inside zimfw/zimfw](https://github.com/zimfw/zimfw/tree/master/modules) in...
I'm trying to summarize the differences regarding the variant bits: > The 122 random bits used in UUIDv4 has been very widely deployed and battle-tested in production systems for over...
This can be achieved using the following configuration: ``` let g:bufferline_fname_mod = ':t:s?^$?[No Name]?' ```