David Dunn

Results 9 comments of David Dunn

> Do we actually want to disable `SC2016`? It looks like it's an [exception](https://github.com/koalaman/shellcheck/wiki/SC2016#exceptions) to the rule, because we want the text `${ASDF_DIR}` inside the shim. ie. We don't want...

Is there some case where we need to expand `ASDF_DIR` when reshimming because `ASDF_DIR` isn't set when running a shim? I'm guessing not, given that the scripts that add asdf...

Closing this because the parachain -> ethereum part of this was done in #637 and I'm working on the opposite direction now

This also affects custom keybindings that add a command that has an abbreviation. eg. I use `\co` to open my editor, passing the contents of the line as arguments: ```fish...

Seeing the same issue using fish shell and the [Kitty](https://sw.kovidgoyal.net/kitty/) emulator on MacOS. fwiw the installed commands are placed in `~/.yarn/bin/`, so adding that directory to `$PATH` is a workaround...

[The docs say](https://www.elm-live.com/#hot) that the `--hot` flag only works when outputting a js file, so you'll want to pass `--output` to `elm make` like `elm-live --hot -- --output=main.js src/Main.elm`. You'll...

It's pretty clunky, but I ended up using numbers, like `]2`, `]6` and `]8` for base 2, 16 and 8 conversions. Also set up `]4` for base64. Are these maps...

This toggles comments in insert mode, but won't move the cursor to account for the commentstring: ```lua vim.keymap.set('i', '', ':execute "normal \\(comment_toggle_linewise_current)"', { noremap = true }) ```

I was caught by this today after things working yesterday. Only failed when opening nvim in a single directory. What fixed it for me was deleting the workspace for the...