Hello!
I am trying to have a dynamic prompt from my elisp function. I want something like replace-regexp where it will show you the last regexp entered. I tried (interactive (concat "sab" "bab"))) that doesnt work!
I also tried message like format (interactive "s %s" last-used-regexp)
and that doesn't work! Anyone know how to do this?
Thank you!