Matthew Martin
Matthew Martin
Since redrawhook is now merged, figured I'd start the autoload highlighters and emulate zsh source driver branch. Still appears to work locally (including `setopt interactivecomments` and then typing a line...
`alias ls='echo $(ls)'` then `ls` will cause zsh to crash. This avoids that. The idea is that we are still in the alias even when recursing into a nested list...
I'm not yet happy with loading a local theme. If a user sets ZSH_HIGHLIGHT_THEME=error-only and then happens to have a file in their current directory called error-only, it will pick...
Idea from https://github.com/zsh-users/zsh/commit/40723b3991557d0f5db66cbde9feb5cbc33bce78 ``` # PREBUFFER=$'echo $\\\n' # BUFFER=$'(echo foo)' not ok 1 - [1,8] «(echo fo» - expected (1 10 "default"), observed (1 8 "default"). not ok 2 -...
Re #491, something like this? It does incorrectly highlight `-n` as path in a case statement like ``` case a in --) foo;; a) cat -n .zshrc;; esac ``` (Should...
Fixes #223 Adds new `function-definition` style; thoughts on what that should be by default?
Check --show-prefix rather than --is-inside-work-tree in case we're inside some other git repository (e.g. a ports tree).
A history expansion followed by a character ineligible for history expansion (e.g. `=`) isn't highlighted correctly. `!!=` unquoted is all highlighted as history expansion and `"!!="` terminates the history expansion...
Rather than make the user lookup the team name via the API, use the existing `getTeamID` function to do it for them.
`sizeof(struct sockaddr_storage)` on OpenBSD is 256; however, `struct sockaddr`'s `sa_len` is a `uint8_t`. This means that `SET_SS_LEN(..., sizeof(struct sockaddr_storage))` will set `sa_len` to 0 e.g. https://github.com/solanum-ircd/solanum/blob/667c1061184efbd839b8dcb48742e8d3f52a39d5/ircd/listener.c#L300 I think the least...