-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[go] Enable org-babel integration #4128
Conversation
@bogdanteleaga Can you please review this PR as well? :) |
Hmm, I'm still quite bad at using org mode and I've never used babel before. But there doesn't seem to be much here, if it works I don't see why we wouldn't include it. |
@bogdanteleaga Thanks. You can try it out by typing this in org mode and in normal mode, do
You should see this appear below those lines:
|
(defun go/init-ob-go () | ||
(use-package ob-go | ||
:if (configuration-layer/layer-usedp 'org) | ||
:ensure t)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why this :ensure t
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@syl20bnr You're right, the :ensure t
is not needed, removing it in the next push to the branch.
P.S. Sorry for the delayed response!
Adds https://github.com/pope/ob-go emacs package
@syl20bnr The |
@@ -5,6 +5,9 @@ | |||
flycheck | |||
go-mode | |||
go-eldoc | |||
(ob-go :location (recipe | |||
:fetcher github | |||
:repo "pope/ob-go")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ob-go is on MELPA now
I made this PR exactly one year ago, since there doesn't seem to be interest in this, I'm closing this PR, if anybody is up for it, please feel free to take it forward. |
Adds https://github.com/pope/ob-go emacs package