diff --git a/helm-github-stars.el b/helm-github-stars.el index d644558..7681d7d 100644 --- a/helm-github-stars.el +++ b/helm-github-stars.el @@ -69,7 +69,7 @@ (disable-shortcuts) (init . (lambda () (with-current-buffer (helm-candidate-buffer 'local) - (insert (s-join "\n" (hgs/get-github-stars)))))) + (insert (mapconcat 'identity (hgs/get-github-stars) "\n"))))) (candidates-in-buffer) (action . (lambda (candidate) (let ((repo (substring candidate 0 (string-match " - " candidate)))) @@ -81,7 +81,7 @@ (disable-shortcuts) (init . (lambda () (with-current-buffer (helm-candidate-buffer 'local) - (insert (s-join "\n" (hgs/get-github-repos)))))) + (insert (mapconcat 'identity (hgs/get-github-repos) "\n"))))) (candidates-in-buffer) (action . (lambda (candidate) (let ((repo (substring candidate 0 (string-match " - " candidate))))