emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* I created a package ob-clojure-literate for Clojure Literate Programming in Org-mode
@ 2018-01-04  9:34 numbchild
  2018-01-04 10:55 ` Bastien Guerry
  0 siblings, 1 reply; 6+ messages in thread
From: numbchild @ 2018-01-04  9:34 UTC (permalink / raw)
  To: Org-mode, clojure

[-- Attachment #1: Type: text/plain, Size: 496 bytes --]

I created a package ob-clojure-literate for Clojure Literate Programming in
Org-mode. Welcome to use it and add PR.

https://github.com/stardiviner/ob-clojure-literate

I still have two features not implemented. Hope someone will PR. Thanks
very much.

[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

[-- Attachment #2: Type: text/html, Size: 1277 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: I created a package ob-clojure-literate for Clojure Literate Programming in Org-mode
  2018-01-04  9:34 I created a package ob-clojure-literate for Clojure Literate Programming in Org-mode numbchild
@ 2018-01-04 10:55 ` Bastien Guerry
  2018-01-04 11:20   ` numbchild
  2018-01-04 11:22   ` numbchild
  0 siblings, 2 replies; 6+ messages in thread
From: Bastien Guerry @ 2018-01-04 10:55 UTC (permalink / raw)
  To: numbchild@gmail.com; +Cc: clojure, Org-mode

"numbchild@gmail.com" <numbchild@gmail.com> writes:

> https://github.com/stardiviner/ob-clojure-literate

Thanks for sharing this.

About this part:

(defun ob-clojure-cider-do-not-find-ns ()
  "Fix the issue that `cider-current-ns' try to invoke
`clojure-find-ns' to extract ns from buffer."
  (setq-local cider-buffer-ns "user"))

I'm not entirely sure what is the problem here, but it
looks like something that can be fixed directly un CIDER.

Is it so?

-- 
 Bastien

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: I created a package ob-clojure-literate for Clojure Literate Programming in Org-mode
  2018-01-04 10:55 ` Bastien Guerry
@ 2018-01-04 11:20   ` numbchild
  2018-01-04 11:39     ` Bastien Guerry
  2018-01-04 11:22   ` numbchild
  1 sibling, 1 reply; 6+ messages in thread
From: numbchild @ 2018-01-04 11:20 UTC (permalink / raw)
  To: Bastien Guerry; +Cc: Org-mode, clojure

[-- Attachment #1: Type: text/plain, Size: 1718 bytes --]

No, I asked Clojure ML, and posted an issue on clojure-mode GitHub issues.
I need to find a workaround on myself.
You can check out the discussion here
https://github.com/clojure-emacs/clojure-mode/pull/465.

[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

On Thu, Jan 4, 2018 at 6:55 PM, Bastien Guerry <bzg@gnu.org> wrote:

> "numbchild@gmail.com" <numbchild@gmail.com> writes:
>
> > https://github.com/stardiviner/ob-clojure-literate
>
> Thanks for sharing this.
>
> About this part:
>
> (defun ob-clojure-cider-do-not-find-ns ()
>   "Fix the issue that `cider-current-ns' try to invoke
> `clojure-find-ns' to extract ns from buffer."
>   (setq-local cider-buffer-ns "user"))
>
> I'm not entirely sure what is the problem here, but it
> looks like something that can be fixed directly un CIDER.
>
> Is it so?
>
> --
>  Bastien
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #2: Type: text/html, Size: 3153 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: I created a package ob-clojure-literate for Clojure Literate Programming in Org-mode
  2018-01-04 10:55 ` Bastien Guerry
  2018-01-04 11:20   ` numbchild
@ 2018-01-04 11:22   ` numbchild
  1 sibling, 0 replies; 6+ messages in thread
From: numbchild @ 2018-01-04 11:22 UTC (permalink / raw)
  To: Bastien Guerry; +Cc: Org-mode, clojure

[-- Attachment #1: Type: text/plain, Size: 1591 bytes --]

If you got any problem after use and test, GitHub issues and PR welcome.
Thanks.

[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

On Thu, Jan 4, 2018 at 6:55 PM, Bastien Guerry <bzg@gnu.org> wrote:

> "numbchild@gmail.com" <numbchild@gmail.com> writes:
>
> > https://github.com/stardiviner/ob-clojure-literate
>
> Thanks for sharing this.
>
> About this part:
>
> (defun ob-clojure-cider-do-not-find-ns ()
>   "Fix the issue that `cider-current-ns' try to invoke
> `clojure-find-ns' to extract ns from buffer."
>   (setq-local cider-buffer-ns "user"))
>
> I'm not entirely sure what is the problem here, but it
> looks like something that can be fixed directly un CIDER.
>
> Is it so?
>
> --
>  Bastien
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #2: Type: text/html, Size: 2881 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: I created a package ob-clojure-literate for Clojure Literate Programming in Org-mode
  2018-01-04 11:20   ` numbchild
@ 2018-01-04 11:39     ` Bastien Guerry
  2018-01-05  6:28       ` numbchild
  0 siblings, 1 reply; 6+ messages in thread
From: Bastien Guerry @ 2018-01-04 11:39 UTC (permalink / raw)
  To: numbchild@gmail.com; +Cc: clojure, Org-mode

Thanks!

"numbchild@gmail.com" <numbchild@gmail.com> writes:

> No, I asked Clojure ML, and posted an issue on clojure-mode GitHub
> issues. I need to find a workaround on myself.
> You can check out the discussion here https://github.com/
> clojure-emacs/clojure-mode/pull/465.

I posted a comment too -- I still think a change in CIDER would be
better.

-- 
 Bastien

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: I created a package ob-clojure-literate for Clojure Literate Programming in Org-mode
  2018-01-04 11:39     ` Bastien Guerry
@ 2018-01-05  6:28       ` numbchild
  0 siblings, 0 replies; 6+ messages in thread
From: numbchild @ 2018-01-05  6:28 UTC (permalink / raw)
  To: Bastien Guerry; +Cc: Org-mode, clojure

[-- Attachment #1: Type: text/plain, Size: 1520 bytes --]

After @bbatsov's explaination. I think he is right. I'm considering to
improve my solution. Might will be available soon.

[stardiviner]           <Hack this world!>      GPG key ID: 47C32433
IRC(freeenode): stardiviner                     Twitter:  @numbchild
Key fingerprint = 9BAA 92BC CDDD B9EF 3B36  CB99 B8C4 B8E5 47C3 2433
Blog: http://stardiviner.github.io/

On Thu, Jan 4, 2018 at 7:39 PM, Bastien Guerry <bzg@gnu.org> wrote:

> Thanks!
>
> "numbchild@gmail.com" <numbchild@gmail.com> writes:
>
> > No, I asked Clojure ML, and posted an issue on clojure-mode GitHub
> > issues. I need to find a workaround on myself.
> > You can check out the discussion here https://github.com/
> > clojure-emacs/clojure-mode/pull/465.
>
> I posted a comment too -- I still think a change in CIDER would be
> better.
>
> --
>  Bastien
>

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+unsubscribe@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
--- 
You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

[-- Attachment #2: Type: text/html, Size: 2753 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-01-05  6:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-01-04  9:34 I created a package ob-clojure-literate for Clojure Literate Programming in Org-mode numbchild
2018-01-04 10:55 ` Bastien Guerry
2018-01-04 11:20   ` numbchild
2018-01-04 11:39     ` Bastien Guerry
2018-01-05  6:28       ` numbchild
2018-01-04 11:22   ` numbchild

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).