Psionic K
Psionic K
I fixed a local copy with the following patch: ``` (buffer-name) - (pkg-info-format-version - (pkg-info-package-version "package-lint"))) + (pkg-info-version-info "package-lint")) ``` ``` ELISP> (symbol-file 'package-lint 'provide) "/home/user/.emacs.d/straight/build/package-lint/package-lint.elc" ELISP> (pkg-info-package-version "package-lint") ***...
Like most linters, it really needs a switch to turn off a check on certain lines or sexps. Would be happy if there was a simple comment at the end...
As mentioned in #78 it's pretty easy to assume these two values are boolean settings and to cause bugs intermittently when the fall-through condition is evaluated in the post command...
First things first regarding #25 I noticed while writing a test that `#'ts-apply` and `#'ts-update' were mutating the unix time even though it's unnecessary. A proper fix started to rabbit...
I want to adopt this into the guts of [chamagne](https://github.com/positron-solutions/champagne) Looks like we have to call `seconds-to-time` on the `ts-unix` result. IMO `ts-emacs` would tighten up the API. Did I...
Readers
Some code I just wrote needed understand these input formats: ``` ;; (champagne nil "12:00am") ; will use tomorrow if necessary ;; (champagne nil "12:00") ; ⚠️ read as military...
Within a well-formed elisp package, we know where all the headers are. If all requirments for the package and its tests are in headers, there's no need to update nix...
The vision is to make `(interactive)` forms in transient commands easier to write for both directly calling by M-x and via transient. - If I call an interactive command by...
Some toying with the `transient-lisp-variable` gave me a useful idea for package authors: ```elisp (defcustom my-custom-variable :type 'natnum) ;; note, use of defvar style signature, setting the default value to...
IIRC magit still binds the status buffer independently from the transient definition even though it's mostly the same. I'm writing some code that goes like this: ```elisp (transient-define-prefix uni-dyn-dispatch "Control...