Skip to content

Instantly share code, notes, and snippets.

View Fuco1's full-sized avatar
🕶️
Configuring Emacs

Matus Goljer Fuco1

🕶️
Configuring Emacs
View GitHub Profile
> cask exec elsa pomidor.el
pomidor.el:69:49:error:Argument 1 accepts type String but received Mixed
pomidor.el:74:49:error:Argument 1 accepts type String but received Mixed
pomidor.el:79:53:error:Argument 1 accepts type String but received Mixed
pomidor.el:84:55:error:Argument 1 accepts type String but received Mixed
pomidor.el:90:22:error:Argument 1 accepts type String but received Unbound
pomidor.el:113:27:error:Reference to free variable `pomidor-default-alert'.
pomidor.el:125:22:error:Argument 1 accepts type (Cons Mixed Mixed)? but received Unbound
pomidor.el:131:37:error:Reference to free variable `pomidor-play-sound-file-emacs'.
pomidor.el:141:9:error:Reference to free variable `pomidor-time-face'.
@Fuco1
Fuco1 / magit-filter.el
Created June 10, 2019 14:24
ANSI-aware magit-process-filter
(defun magit-process-filter (proc string)
"Default filter used by `magit-start-process'."
(with-current-buffer (process-buffer proc)
(let ((inhibit-read-only t))
(magit-process-yes-or-no-prompt proc string)
(magit-process-username-prompt proc string)
(magit-process-password-prompt proc string)
(goto-char (process-mark proc))
(setq string (propertize string 'magit-section
(process-get proc 'section)))
@Fuco1
Fuco1 / Cask
Last active March 14, 2023 16:42
eask test
(package "eask-test"
"1.0.0"
"")
(package-file "eask-test.el")
(source gnu)
(source melpa)
(depends-on "emacs" "26.1")