Results 108 comments of Jackie Li

I made https://github.com/jackielii/neo-tree-bufferline.nvim and been using it for a few weeks now. It works well for me. Maybe you can give it a try if you're using neo-tree already

I keep maintaining my fork: https://github.com/jackielii/skhd. Now support wildcard forwarding in proc map: ``` ctrl - backspace | alt - backspace ctrl - delete | alt - delete # move...

Maybe unrelated, I'm exploring grafana dev and did `yarn dlx @yarnpkg/sdks vim`. But all the external imports are not resolving. And tsserver log shows ``` Using tsserver from: $HOME/.config/coc/extensions/node_modules/coc-tsserver/node_modules/typescript/lib ```...

Somehow this also works and gofmt won't change the code. It adds a space after the comment ``` // / 2>/dev/null ; gorun "$0" "$@" ; exit $? ```

I think the `go_to` with absolution position is correct, I just wished the pinned buffer ordinal number changes too. Or better add a "absolute_number" in the numbers option _update_: you...

I observe the same error. I got more general work around: ```js document.addEventListener("htmx:beforeHistorySave", () => { const parent = document.querySelector("[hx-disabled-elt]"); if (!parent) return; const childrenSelector = form.getAttribute("hx-disabled-elt"); const children =...

Same things happens to gopls. I had this problem for a long time... My solution is just disable the workspace folder resolution. Always set to pwd. But somehow there are...

Also, the use of `log.Fatal` breaks normal flow. I think error should be returned: https://github.com/sugarme/tokenizer/blob/master/tokenizer.go#L207

I have written my bufferline.nvim integration, and it looks like this: ![image](https://github.com/ThePrimeagen/harpoon/assets/360983/32e3a99a-b05a-44a1-ae3e-4bcc19a9a582) _Green_ is harpoon buffer, and _Orange_ is bufferline buffer The config is pretty straight forward. However there seems...

Here is my use case: I commit most of my configs to a public github repo and keep all the tokens in one file called .secret and encrypt it before...