diff --git a/ChangeLog.md b/ChangeLog.md index 15f7093..5f2f56e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,6 +1,6 @@ # emacs-gitlab ChangeLog -# Version 0.1.0 (IN PROGRESS) +# Version 0.1.0 (11/06/2014) - Helm interface to show issues - Helm interface to show projects diff --git a/helm-gitlab.el b/helm-gitlab.el index 190f005..effb9f7 100644 --- a/helm-gitlab.el +++ b/helm-gitlab.el @@ -47,6 +47,7 @@ ;; Gitlab library (require 'gitlab) +(require 'gitlab-ui) ;; UI ;; ---- @@ -140,7 +141,7 @@ "List Gitlab projects using Helm interface." (interactive) (helm :sources '(helm-gitlab--projects-source) - :buffer "*helm-gitlab*")) + :buffer helm-gitlab--buffer-name)) ;;;###autoload @@ -148,7 +149,7 @@ "List Gitlab issues using Helm interface." (interactive) (helm :sources '(helm-gitlab--issues-source) - :buffer "*helm-gitlab*")) + :buffer helm-gitlab--buffer-name)) (provide 'helm-gitlab)