(re-search-backward " " lurk-input-marker t)))
(table-row (assoc (upcase cmd-str) lurk-command-table #'equal)))
(if (and table-row (elt table-row 3))
- (let ((completions (funcall (elt table-row 3))))
+ (let* ((completions-nospace (funcall (elt table-row 3)))
+ (completions (mapcar (lambda (el) (concat el " ")) completions-nospace)))
(completion-in-region (+ 1 space-idx) (point) completions)))))
((rx (: "/" (* (not whitespace)) string-end))
(message (buffer-substring lurk-input-marker (point)))
(completion-in-region lurk-input-marker (point)
- (mapcar (lambda (row) (string-join (list "/" (car row))))
+ (mapcar (lambda (row) (concat "/" (car row) " "))
lurk-command-table)))
(_
(let* ((end (max lurk-input-marker (point)))