Psionic K
Psionic K
I found a use case and that this issue is still a problem. When providing the language server with per-project resources using nix, the shell entry needs to be done,...
```elisp (use-package direnv ; direnv integration :after lsp :delight 'direnv-mode :config ;; Ensures that external dependencies are available before they are called. (add-hook 'prog-mode-hook #'direnv--maybe-update-environment) (setq direnv-always-show-summary nil) (direnv-mode 1))...
Although this is for cachix github action, uses same nix.conf ``` - uses: cachix/install-nix-action@v15 with: extra_nix_config: | access-tokens = github.com=${{ secrets.GITHUB_TOKEN }} ``` https://github.com/cachix/install-nix-action#usage-with-flakes Don't know why I never get...
cargo2nix has some private registry support. It may require updating. I'll see if I can pull some examples out of the original creators.
I'm diving into seriously elisp development. I lack context. I will endlessly invest in team productivity. 99% of use cases are run all the tests or run just one test....
I was destroyed by some issue that only appears with a byte compiled loaded file in https://github.com/alphapapa/makem.sh/issues/36 I don't have much experience debugging .elc so I'm having to put buttercup...
Question. I worked on a yank. I think I'm missing some indirection though: ```elisp (defun pmx-vterm-yank () "Yank, but disable vterm copy mode first" (interactive) (when vterm-copy-mode (vterm-copy-mode -1)) (call-interactively...
Kind of works, but the region behavior could be better. I'm getting whole lines even though I only marked a word.
I think I'm just using `call-interactively` incompletely, but I'm not sure. The interaction with editing commands feels a little inconsistent with the behavior in other buffers. Two behaviors I don't...
It's just cleaner than advice, but advice or decorating commands is fine for commands until they get used by other packages