Compare commits
2 Commits
a42a04441b
...
c76ce05ffe
| Author | SHA1 | Date | |
|---|---|---|---|
| c76ce05ffe | |||
| 934ff45672 |
4
rbw.el
4
rbw.el
@@ -71,11 +71,11 @@
|
||||
(string-match "\\([^:]*\\)$" output)
|
||||
(let* ((trimmed (string-trim (match-string 1 output)))
|
||||
(splitted (split-string trimmed ", "))
|
||||
(splitted (cl-remove-if-not (lambda (x) (string-match "@" x)) splitted))
|
||||
(ending (concat "@" selected))
|
||||
(splitted (cl-remove-if-not (lambda (x) (string-match ending x)) splitted))
|
||||
(result-list '()))
|
||||
(dolist (element splitted)
|
||||
(push (car (split-string element ending)) result-list))
|
||||
(reverse result-list)))
|
||||
|
||||
(provide 'rbw-mode)
|
||||
(provide 'rbw)
|
||||
|
||||
Reference in New Issue
Block a user