fragbot2@alien.topOPBtoEmacs@communick.news•Iterating through a data structure doing interactive edits on each elementEnglish
1·
1 year agoMy general thought:
(defun zzz (elt)
(let ((file (car elt))
(repo (cadr elt))
(st (caddr elt))
(is (cadddr elt))
(progn (find-file file)
(search-forward repo)
(switch-me-to-interactive-node-until-i hit-a-hotkey st is)
(save-buffer)
(kill-buffer))))
It’s the switch-me
function that I’m not sure how to approach.
Things I’d recommend checking out: