Psionic K

Results 63 issues of Psionic K

The CLI instructions show an edit of an existing secret and having access to private keys necessary to do so. I may want to set up a situation where the...

Small change request. I'm using an elisp file to run the lints, using `--script` rather than `--batch` to push more work into elisp and less bash / Makefile. The printing...

I've been replacing some bindings and found a way to make a funny error message. First set `avy-escape-chars` ```lisp (use-package avy :custom (avy-escape-chars '(?\e ?\M-g))) ``` Now pressing `C-g` gives...

**Test with:** ```elisp ;; straight-use-package (use-package parrot :straight (parrot :type git :host github :repo "positron-solutions/parrot") :custom (parrot-animate 'hide-static) (parrot-rotate-animate-after-rotation nil) (parrot-num-rotations 10) (parrot-type 'emacs) (parrot-animate-on-load t) (parrot-mode t)) ;; enables...

Project-based test discovery, completions dispatch of individual tests. The run-at-point command is neat, but completions to run suites / specs while developing would be more useful to avoid needing to...

enhancement

I'm using the following tweaks: ```elisp (defun pmx-vterm-avy-goto-word-1 () "Jump, but enable vterm copy mode first" (interactive) (unless vterm-copy-mode (vterm-copy-mode 1)) (call-interactively 'avy-goto-word-1)) (defun pmx-vterm-kill-ring-save () "Kill, but enable vterm...

https://github.com/positron-solutions/posimacs/commit/f83012ea54073f76577fc0b8f5d630addcee7c10#diff-dcc281632392ade5cfc4c2587fda4764eb29864639661442d8c3bb28d8eb7b42R28-R33 There is a canonical way to provide headers to cmake, and this is definitely not it. I ran into issues with several other hackish paths. This at least works.

I am making this issue to find aspects of similarity in our work. Currently I'm planning [cargo2nix](https://github.com/cargo2nix/cargo2nix/issues/248) architecture. My goal is to implement independent derivation building in a way suitable...

rust

Stub issue reminder to find tracking issues. Need to understand if this changes anything for cargo2nix. It's likely that because only cargo library is using the index and there's no...

There's quite a few entries in the workspace and crate configs that could foreseeably be used within builds. The current synthetic toml only keeps the bare minimum. There's no reason...

enhancement