James Dugan
James Dugan
In [palette.md](https://github.com/sainnhe/everforest/blob/master/palette.md), the Tree Sitter colors sometimes do not agree with the regular colors. For example, `aqua` is the constants color normally, but `fg` is the Tree Sitter constants color....
Added auto-install snippet and fixed linking issues in the README.md. This should resolve issues #14 and #15. The "Tips and Tricks" section with the auto-install snippet is open for edit,...
Since this project hasn't seen any activity for over two years, I wanted to know if you would still consider pull requests against this repository. If so, then I have...
### What Operating System(s) are you seeing this problem on? Linux X11 ### Which Wayland compositor or X11 Window manager(s) are you using? Awesome WM (although this shouldn't matter) ###...
In addition to a severity of Error, Warning, Hint, and Info, diagnostics can have a tag indicating unnecessary code or deprecated code. Supporting this by adding `DiagnosticUnnecessary` and `DiagnosticDeprecated` faces...
Many shells such as fish and nushell offer hinters out of the box similar to those that can be defined by overriding Hilbish's `hilbish.hinter` function. I happen to have a...
Recently, Go 1.23 was released, and with it appear to be some breaking changes that prevent Hilbish from building successfully. When I try to clone Hilbish and build it, `go...
Currently, kakoune-lsp always logs to the debug buffer. This can obscure debug messages from other Kakoune scripts, making it harder to debug those. To make the debug buffer less noisy,...
Currently, the default `starship.toml` for kakship uses `echo -n` for certain modules. This is not posix compliant (it's actually a bash extension) and therefore not portable, and on MacOS for...
Consider the following `command.preexec` hook: ```lua bait.catch("command.preexec", function(_, _) print "Hook Fired" end) ``` Ideally, this would only fire just before running an actual command. However, if we try to...