Josh Bode

Results 12 issues of Josh Bode

Hello! Thank you for the `jpp` tool - the formatting is great :) I've noticed that escaped strings aren't being correctly handled: ``` $ echo '{"x": "\\\\w+"}' | jpp {"x":...

The broadcasted not operator `.!` (new in 0.6) is returning results with unexpected type when used directly on expressions containing a `DataArray`, e.g. ```julia isa(.!isna.(x), DataArray) == true ``` whereas,...

- check whether nvim error is bytes - use stderr for error messages closes #189

It appears that `nvr` assumes that the argument to the exception raised by `pynvim` is of type `bytes`, however (recently?) is is of type `str`. ``` $ nvr ~/.profile Traceback...

When working with tables inside a CTE (aka `WITH`) no column completions are generated. e.g. when the cursor is here (at the `|`) ``` SELECT x.| -- completions generated correctly...

Hello! Thank you - this is a great tool :) One thing I had to do to get `TAG_CMD_FMT_STRING` working with Neovim under ZSH was to use double-quotes rather than...

Allow setting extra options for `pipx` installs, e.g. ```toml "pipx:some-package" = { version = "latest", preinstall = "foo|bar" } ``` which would translate to: ```shell pipx install some-package --preinstall foo...

Use `keyword_pattern` in place of `char.is_symbol` to improve matching (especially useful for improving for `cmp-path` and `cmp-cmdline` matches in the command-line). Falls back to original behaviour of using `char.is_symbol` if...

Dollars in filenames need to be escaped so they aren't interpreted as variables for expansion

If whitespace was trimmed (start and end of string) from the `run` field, then it would make it more convenient/readable to use multi-line scripts in tasks, e.g. ```toml [tasks.test] run...