我正在編寫簡單的elisp函數,它交互地使用3個參數:from,to和separator。然後,它把一系列數字:Emacs交互式讀取轉義序列
(defun gen-seq (from to sep)
"Generates sequence of numbers FROM .. TO with separator SEP"
(interactive "nFrom: \nnTo: \nMSeparator: ")
(insert (mapconcat 'number-to-string (number-sequence from to) sep)))
但當sep
是\n
,它會產生類似
1\n2\n3\n4\n5\n6\n7\n8\n9\n10
是否有可能實現數字列在我的Emacs緩衝這個功能呢?
切圓,你可能會發現[微型](https://github.com/abo-abo/tiny)庫出於興趣。 – phils