Re: [O] How to use noweb reference with argument in other languages?

2017-06-20 Thread Kaushal Modi
ame way as we care about the results output by the first block, not how those results are obtained. * noweb reference with argument #+NAME: sh-print-something #+BEGIN_SRC python :var str="foo" :results output print('echo "' + str + '"') #+END_SRC #+RESULTS: sh-print-something : echo "foo" #+BEGIN_SRC shell :results output :noweb yes echo "hello, " <> #+END_SRC #+RESULTS: : hello, : stardiviner -- Kaushal Modi

Re: [O] How to use noweb reference with argument in other languages?

2017-06-19 Thread Kaushal Modi
I have to have used noweb for the very first time in this recent project: https://raw.githubusercontent.com/kaushalmodi/eless/master/eless.org ; search for ":noweb-ref" in there to get an idea. > -- Kaushal Modi

Re: [O] Add ob-sclang.el for sclang Org-mode babel support in contrib/

2017-06-19 Thread Kaushal Modi
how a lexically bound package is more portable as there is no implicit reliance on global variables from multiple other packages. > -- Kaushal Modi

Re: [O] Add an optional HOLD argument to "n" Org macro

2017-06-18 Thread Kaushal Modi
Hello Nicolas, On Sun, Jun 18, 2017, 3:16 AM Nicolas Goaziou wrote: > > As I said, I was only nitpicking. Feel free to fix it, or not. > OK, thanks for confirming. I'll leave out this edit then. > -- Kaushal Modi

Re: [O] Add an optional HOLD argument to "n" Org macro

2017-06-17 Thread Kaushal Modi
ed making the when -> and change. Do you want me to fix that in another commit? Though, functionally they are the same, and 'make test' is passing. -- Kaushal Modi

Re: [O] Add an optional HOLD argument to "n" Org macro

2017-06-17 Thread Kaushal Modi
Hello Nicolas, Just pinging to check if the patch in the previous email got missed. Apologies if you were already reviewing it. Thanks. On Thu, Jun 15, 2017, 2:07 PM Kaushal Modi wrote: > On Thu, Jun 15, 2017 at 12:07 PM Nicolas Goaziou > wrote: > >> We do not need this

Re: [O] Add an optional HOLD argument to "n" Org macro

2017-06-15 Thread Kaushal Modi
t. Now ws trimming is done on both args. Revised patch is attached. -- Kaushal Modi 0001-Add-hold-action-to-the-n-macro-and-ws-trim-all-n-mac.patch Description: Binary data

Re: [O] Add an optional HOLD argument to "n" Org macro

2017-06-15 Thread Kaushal Modi
On Thu, Jun 15, 2017 at 9:10 AM Kaushal Modi wrote: > The patch based off latest master is attached. Please review. > Here's the same patch with one fix.. support white space around the "-"/"hold" arg. This patch adds a dependency on subr-x library for string-

Re: [O] Add an optional HOLD argument to "n" Org macro

2017-06-15 Thread Kaushal Modi
On Wed, Jun 14, 2017 at 3:47 PM Nicolas Goaziou wrote: > I think it is better since resetting, setting and holding are mutually > exclusive. Thanks. > With tests, please! :) > Of course :) The patch based off latest master is attached. Please review. -- Kaushal Modi 0

Re: [O] Backward incompatible outline-invisible-p change in emacs master for Org

2017-06-15 Thread Kaushal Modi
On Thu, Jun 15, 2017 at 8:40 AM Bastien Guerry wrote: > Kaushal Modi writes: > > > Before I commit this to master, I was thinking that this patch looks > > safe enough for the maint branch. If there are no objections, I can > > commit this to maint and merge to master. &

Re: [O] Backward incompatible outline-invisible-p change in emacs master for Org

2017-06-15 Thread Kaushal Modi
ing emacs master + org maint will get this bug fix too. > -- Kaushal Modi

[O] Add an optional HOLD argument to "n" Org macro (Was: [RFC] The "c" Org macro)

2017-06-14 Thread Kaushal Modi
r formatted patch, because I don't know if this is the best implementation. Would it be better to rename the RESET option to something more generic, like ARG? That way, - If ARG is a "-" string, the counter value will be held and not incremented. - If ARG is a number represented as a string, it set the NAME counter to that value (like now). - Else if ARG is a non-empty string, it resets the NAME counter to 1 (like now). -- Kaushal Modi

Re: [O] [RFC] The "c" Org macro

2017-06-14 Thread Kaushal Modi
25, 2017 at 2:31 PM Kaushal Modi wrote: > On Thu, May 25, 2017 at 6:42 AM Nicolas Goaziou > wrote: > >> >> Pushed. > > > Works great! Thanks for fixing the auto-filling issue too. > -- > > Kaushal Modi > -- Kaushal Modi

Re: [O] Backward incompatible outline-invisible-p change in emacs master for Org

2017-06-14 Thread Kaushal Modi
n-nil for *any* invisible property. So that commit breaks org's expectation. This looks fine, Thanks. > but I'd rather revert the faulty Emacs commit if > it is not necessary. > > Until Paul enlighten us, I'll have a deeper look. > After reviewing debbugs 24073, the commit looks correct for emacs master and outline package. WDYT? -- Kaushal Modi

Re: [O] Backward incompatible outline-invisible-p change in emacs master for Org (Was: 6 failing tests on master branch)

2017-06-14 Thread Kaushal Modi
On Wed, Jun 14, 2017 at 10:56 AM Kaushal Modi wrote: > One solution would be to have a new function "org-invisible-p" that > restores the old definition of outline-invisible-p. Interestingly I find > that an "org-invisible-p" did exist back then, but it was replaced

[O] Backward incompatible outline-invisible-p change in emacs master for Org (Was: 6 failing tests on master branch)

2017-06-14 Thread Kaushal Modi
find that an "org-invisible-p" did exist back then, but it was replaced with outline-invisible-p in 2011 ( http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=84d7165d74a5061413168af435d61453be217933 ). Looks like that might need reverting. I also find an org-invisible-p2 function, but it's not clear why it does a (backward-char 1) before doing invisibility check.. and that too eventually relies on outline-visible-p. (Turns out this function has a long history: http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=93a4128a6fe47b4e05c0a7cb3ec14878b41d6000 ) I am copying Bastien and Paul as they would know the history behind the above referenced emacs master commit. -- Kaushal Modi

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-06-13 Thread Kaushal Modi
On Tue, Jun 13, 2017 at 5:32 PM Nicolas Goaziou wrote: > > I have attached the revised patch. > > LGTM. Thank you for the work! > Yay! Pushed to master. Thanks for the super reviews. It was a great learning experience. -- Kaushal Modi

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-06-13 Thread Kaushal Modi
))) > (unwind-protect > (cl-letf (((symbol-function 'url-retrieve-synchronously) > (lambda (&rest _) >(with-current-buffer buffer (insert "HTTP 200 > OK\n\nfoo")) > buffer))) > (org-file-conten

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-06-12 Thread Kaushal Modi
I have attached the same patch with one more test; rebased to master. On Fri, Jun 9, 2017 at 12:59 PM Kaushal Modi wrote: > I have attached the updated patch, rebased to master. > -- Kaushal Modi 0001-Allow-org-file-contents-to-fetch-file-contents-from-.patch Description: Binary data

Re: [O] mathjax

2017-06-12 Thread Kaushal Modi
> is in the detail. > Glad you got it sorted out! Adam did some awesome crystal ball debugging :) -- Kaushal Modi

Re: [O] mathjax

2017-06-11 Thread Kaushal Modi
//orgmode.org/cgit.cgi/org-mode.git/commit/?h=maint&id=842a75828f5e16412fdab5180164eda27e971e0d So all the org-mode updates on Org Elpa or Melpa since then have that in effect, and even the releases starting with version 9.0.6. - What's your org version? - What do you see when you do C-h v org-html-mathjax-options ? -- Kaushal Modi

Re: [O] 6 failing tests on master branch

2017-06-09 Thread Kaushal Modi
On Fri, Jun 9, 2017 at 4:05 PM Nicolas Goaziou wrote: > Hello, > > Kaushal Modi writes: > > > Here's a patch rebased off maint (as it's just test and manual change > with > > edits to a backward compatible Tramp syntax). > > LGTM. > > Thank

Re: [O] 6 failing tests on master branch

2017-06-09 Thread Kaushal Modi
which is no longer a valid syntax. > Here's a patch rebased off maint (as it's just test and manual change with edits to a backward compatible Tramp syntax). There were some alignment issues in that External links section. So I have fixed that too. -- Kaushal Modi 0001-Update-remote-f

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-06-09 Thread Kaushal Modi
for any file. > Otherwise, LGTM. Would you want to throw in some tests? You can use > cl-letf to bind `url-retrieve-synchronously' to a function returning > a buffer containing some dumb (valid or invalid) output. > Done! I, though used invalid URLs in the test. (If they become valid at some point in distant future (I doubt), then we can update the test :)) -- Kaushal Modi 0001-Allow-org-file-contents-to-fetch-file-contents-from-.patch Description: Binary data

Re: [O] 6 failing tests on master branch

2017-06-09 Thread Kaushal Modi
On Fri, Jun 9, 2017 at 12:02 PM Michael Albinus wrote: > Kaushal Modi writes: > > The stronger Tramp file name syntax requires now a method. Something > like "/ssh:myself@some.where:papers/last.pdf". This is backward > compatible with Emacs 25, 24, etc pp. >

Re: [O] 6 failing tests on master branch

2017-06-09 Thread Kaushal Modi
On Fri, Jun 9, 2017 at 10:26 AM Kaushal Modi wrote: > This one should be easy to debug since >> >> (org-export-file-uri "/myself@some.where:papers/last.pdf") >> >> is easy to reproduce. Could you investigate where the spurious "/" comes >> f

Re: [O] make test is failing? [ob-fortran stuff]

2017-06-09 Thread Kaushal Modi
an interpreter in there somewhere. > > Yours, > Christian > > Kaushal Modi writes: > > > Hi all, > > > > I cloned a fresh copy of org-mode and ran "make test" for the first time. > > > > The following are failing: > > > > 3 une

Re: [O] 6 failing tests on master branch

2017-06-09 Thread Kaushal Modi
eproduce. Could you investigate where the spurious "/" comes > from? > Will do. > >FAILED 646/734 test-org/custom-properties > >FAILED 668/734 test-org/forward-paragraph > > These one are related to invisible text. I don't what is going to change > in this area in next Emacs release. > I'll have to leave this for a future debug.. Someone else wants to help out with this? > You can run, e.g., > > BTEST_RE="foo" make test > Thanks! -- Kaushal Modi

[O] 6 failing tests on master branch

2017-06-08 Thread Kaushal Modi
(looking-at "P3"))) :value nil)) FAILED 668/734 test-org/forward-paragraph --- I have an unrelated make test question too. If I add a test, say test-org/foo, in order to make learning ert and org test writing faster, it is possible to run just that one test-org/foo and not the whole suite? -- Kaushal Modi

Re: [O] Minor addition to Speed Keys info node

2017-06-08 Thread Kaushal Modi
On Thu, Jun 8, 2017 at 6:50 AM Nicolas Goaziou wrote: > This never happens. Master is a strict superset of maint. > Thanks. That takes care of my merging concerns. -- Kaushal Modi

Re: [O] Minor addition to Speed Keys info node

2017-06-08 Thread Kaushal Modi
e. And in the case there are commits that should not be merged to master, you just cherry-pick, right? -- Kaushal Modi

Re: [O] org-link-minor-mode.el broken by recent org maint

2017-06-08 Thread Kaushal Modi
e this one: https://github.com/seanohalpin/org-link-minor-mode Also it hasn't been updated in 5 years; it's from org 7 era. > -- Kaushal Modi

Re: [O] Minor addition to Speed Keys info node

2017-06-07 Thread Kaushal Modi
) For future, should I refrain from doing the merges? -- Kaushal Modi

Re: [O] Minor addition to Speed Keys info node

2017-06-07 Thread Kaushal Modi
On Wed, Jun 7, 2017 at 4:44 PM Kaushal Modi wrote: > Did you mean that I need to move those tags closer to where those vars are > actually referenced in that node? > Seems like that was the intention. Also as I am referring to the org-speed-command-help function for the first time in t

Re: [O] Minor addition to Speed Keys info node

2017-06-07 Thread Kaushal Modi
to add those.. Did you mean that I need to move those tags closer to where those vars are actually referenced in that node? -- Kaushal Modi

Re: [O] Minor addition to Speed Keys info node

2017-06-07 Thread Kaushal Modi
e's docstring. With Speed Keys activated, @kbd{M-x +org-speed-command-help}, or @kbd{?} when cursor is at the beginning of an Org +headline, shows currently active Speed Keys, including the user-defined ones. @node Code evaluation security -- 2.13.0 On Wed, Jun 7, 2017 at 12:32 PM K

Re: [O] Minor addition to Speed Keys info node

2017-06-07 Thread Kaushal Modi
ise, LGTM. > Thanks. I was unaware of the --- syntax. Here's the updated patch: >From 1a767fb97b680b9fef5d0fd301c9fcf951b705e3 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Wed, 7 Jun 2017 11:34:39 -0400 Subject: [PATCH] Mention org-speed-command-help in Speed Keys info node * doc/or

Re: [O] Minor addition to Speed Keys info node

2017-06-07 Thread Kaushal Modi
The patch is rebased off the maint branch. On Wed, Jun 7, 2017 at 11:39 AM Kaushal Modi wrote: > Hello, > > Here is a patch with some info added to make Speed Keys more accessible to > users (inspired by [1]). > -- Kaushal Modi

[O] Minor addition to Speed Keys info node

2017-06-07 Thread Kaushal Modi
Hello, Here is a patch with some info added to make Speed Keys more accessible to users (inspired by [1]). >From 43ff4c3da12a8ce0333c65372ab8ba51964e7a2a Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Wed, 7 Jun 2017 11:34:39 -0400 Subject: [PATCH] Mention org-speed-command-help in Sp

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-05-28 Thread Kaushal Modi
On Sun, May 28, 2017, 3:36 AM Nicolas Goaziou wrote: > Hello, > > Kaushal Modi writes: > > > I have attached a patch, rebased to master and with all suggestions > > implemented. > > Thank you. > > > There are some additional changes in the patch this ti

Re: [O] Bug: link formating problem [9.0.5 (9.0.5-elpaplus @ /Users/mistkafka/.emacs.d/elpa/org-plus-contrib-20170210/)]

2017-05-27 Thread Kaushal Modi
the > end if you haven't signed papers yet. > Thanks. After the fix in http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=2d29269bb1b9af08011e091913798b6598e4b156, I don't need that org-highlight-links workaround any more. -- Kaushal Modi

Re: [O] Fix org.el compilation warnings

2017-05-26 Thread Kaushal Modi
, for true compilation checks, I'll start using make single. Thanks. > -- Kaushal Modi

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-05-26 Thread Kaushal Modi
nfo "(org) The very busy C-c C-c key"). > Done! > OK. Then the following at least doesn't have the overhead of creating > a string: > Integrated. Thanks! Also, mind the full stop at the end of the comments. > Will do. -- Kaushal Modi 0001-Allow-org-file-contents-to-fetch-file-contents-from-.patch Description: Binary data

Re: [O] Fix org.el compilation warnings

2017-05-26 Thread Kaushal Modi
byte-compile-arglist-warn function that outputs this warning.. but couldn't understand the logic for sig1 in there. -- Kaushal Modi

Re: [O] Fix org.el compilation warnings

2017-05-25 Thread Kaushal Modi
On Thu, May 25, 2017, 7:59 PM Kyle Meyer wrote: > Kaushal Modi writes: > > > I was trying to fix the org.el compilation warnings. > > I don't see any compiler warnings when I run 'make compile' with either > master (2960dc971) or maint (89bd7ad87) on Emacs 25

[O] Fix org.el compilation warnings

2017-05-25 Thread Kaushal Modi
Hello, I was trying to fix the org.el compilation warnings. I could fix just this one: >From 4e2de052dd05e66ed71ce070e4413859e2c13238 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Thu, 25 May 2017 18:24:34 -0400 Subject: [PATCH] org: Silence byte-compiler * lisp/org.el (org-agenda-incl

Re: [O] [RFC] The "c" Org macro

2017-05-25 Thread Kaushal Modi
On Thu, May 25, 2017 at 6:42 AM Nicolas Goaziou wrote: > > Pushed. Works great! Thanks for fixing the auto-filling issue too. -- Kaushal Modi

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-05-25 Thread Kaushal Modi
I have attached an updated and rebased patch with most of your suggestions implemented. Comments below. On Thu, May 25, 2017 at 7:43 AM Kaushal Modi wrote: > On Thu, May 25, 2017, 6:15 AM Nicolas Goaziou > wrote: > >> Interactive functions do not have double-dashes in their

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-05-25 Thread Kaushal Modi
;update"? > For the listed locations of org-file-contents instances in my earlier email, I made no change as I think that those would work the same as before after this commit is applied. I just wanted you to verify if that's the case. The only "update" required around org-file-contents was where expand-file-name was used or default-directory was set (as my patch shows). Thanks! > -- Kaushal Modi

Re: [O] popup buffer showing buffers headings?

2017-05-25 Thread Kaushal Modi
That said, for the purpose of jumping to headings, I like the newly added counsel-org-goto command added to the counsel package. -- Kaushal Modi

Re: [O] Bug: link formating problem [9.0.5 (9.0.5-elpaplus @ /Users/mistkafka/.emacs.d/elpa/org-plus-contrib-20170210/)]

2017-05-24 Thread Kaushal Modi
he "," in there will also be highlighted as a link. So it would look ;; as if the "1,2" string pointed to a single link! ;;But without `plain' as part of this list, the "1" and "2" strings will ;; look like separate links (as should be the case), as the "," will not be ;; highlighted as a link. (setq org-highlight-links (delete 'plain org-highlight-links)) -- Kaushal Modi

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-05-23 Thread Kaushal Modi
it is straightforward to extend the code to remote file names. > > `default-directory' is slightly more tricky, as it is used to properly > read recursively setup files with relative file names. I think our best > bet is to to check if current file name is local or remote, and ignore > `default-directory' setting in the latter case. > Do we need to update the code using org-file-contents in these places: lisp/org-capture.el 692: (setq txt (org-file-contents file)) lisp/ox-man.el 519: (setq code-block (org-file-contents out-file)) 764:(setq code-block (org-file-contents out-file)) contrib/lisp/ox-groff.el 1084: (setq code-block (org-file-contents out-file)) 1521: (setq code-block (org-file-contents out-file)) -- Kaushal Modi 0001-Allow-org-file-contents-to-fetch-file-contents-from-.patch Description: Binary data

Re: [O] [RFC] The "c" Org macro

2017-05-22 Thread Kaushal Modi
o > `fill-nobreak-predicate', like we already do for > `org-fill-line-break-nobreak-p' or > `org-fill-paragraph-with-timestamp-nobreak-p'. > > I will add it to the "n" macro patch. > I didn't know of those. Thanks! -- Kaushal Modi

Re: [O] [RFC] The "c" Org macro

2017-05-22 Thread Kaushal Modi
t;\\|" +;; n Macro +"\\(?:{{{n\\b\\)" ;Don't allow auto-fill to put n macros at BOL "\\)\\)") org-element--object-regexp (mapconcat #'identity -- Kaushal Modi

Re: [O] [RFC] The "c" Org macro

2017-05-22 Thread Kaushal Modi
27;t allow auto-fill to put n macros at BOL "\\)\\)") org-element--object-regexp (mapconcat #'identity With that, now the MWE auto-fills as = If I wish, I can set that counter value to anything I want, like 7463: {{{n(, 7463)}}}. = instead of = If I wish, I can set that counter value to anything I want, like 7463: {{{n(, 7463)}}}. = and that fixes this problem. -- Kaushal Modi

Re: [O] [RFC] The "c" Org macro

2017-05-22 Thread Kaushal Modi
nserting a zero-width space before the dot. So this makes me think of the use of auto-filling in my regular org files... What if auto-filling happened to create a case like this where a line began with a number immediately followed by a period?! Though ending sentences with a number is rare, I just need to be cautious about this. > -- Kaushal Modi

Re: [O] [RFC] The "c" Org macro

2017-05-21 Thread Kaushal Modi
)}}} | {{{n(n2)}}} | {{{n(n3)}}} | #+END_SRC -- Kaushal Modi

Re: [O] Table in org-mode not to be exported to latex

2017-05-17 Thread Kaushal Modi
On Wed, May 17, 2017, 8:07 AM Sharon Kimble wrote: > > --8<---cut here---start->8--- > #+BEGIN_SRC :exports no > | > I think that you are just missing out the language specifier there. Try: #+BEGIN_SRC org :exports no > -- Kaushal Modi

Re: [O] No contrib directory in org-plus-contrib package

2017-05-11 Thread Kaushal Modi
issed something or is their something screwed in the build of the > package? > > I use Emacs 25.2.1 on cygwin 64bit. > All packages from the contrib/ dir are at the base dir level in the installed org-plus-contrib package dir. Basically the dir structure is flattened out when you ins

Re: [O] stable org-plus-contrib

2017-05-11 Thread Kaushal Modi
On Thu, May 11, 2017 at 9:20 AM Phillip Lord wrote: > Kaushal Modi writes: > > I'm afraid that I didn't note them carefully enough to report. I just > assumed I was on a unstable version. Stable or not, a bug report would be always welcome.. that will help the unstable b

Re: [O] stable org-plus-contrib

2017-05-11 Thread Kaushal Modi
branch. That said, I have been using the master branch as my daily driver for over a year. As of now I don't see any bug that affects my workflow. > -- Kaushal Modi

Re: [O] Prevent creating empty lines with trailing spaces when tangling noweb

2017-05-06 Thread Kaushal Modi
On Sat, May 6, 2017, 3:23 AM Nicolas Goaziou wrote: > Hello, > > Kaushal Modi writes: > > I'd rather clean every empty line upon tangling, or let the user do it > with `org-babel-post-tangle-hook'. I just tried this again and it worked this time! (add-hook

Re: [O] Prevent creating empty lines with trailing spaces when tangling noweb

2017-05-05 Thread Kaushal Modi
On Sat, May 6, 2017 at 2:30 AM Kaushal Modi wrote: > +(setq body-str (replace-regexp-in-string "^[ \n\r]*\n" "\n" > body-str))) > > Just one correction to this regexp so that two or more consecutive empty lines in the source block get retained: (setq bo

[O] Prevent creating empty lines with trailing spaces when tangling noweb

2017-05-05 Thread Kaushal Modi
Hello, I have this MWE: #+TITLE: Org babel tangle and noweb #+PROPERTY: header-args:shell :shebang "#!/usr/bin/env bash" * Shell Script #+BEGIN_SRC shell :noweb yes :tangle code.sh exec emacs -Q "$@" \ --eval '(progn <> )' 2>/dev/null >

Re: [O] Cannot get the EXPORT_FILE_NAME override to work

2017-05-04 Thread Kaushal Modi
-file (expand-file-name exported-file eless-root-dir) (expand-file-name exported-file eless-wiki-dir) :ok-if-already-exists) https://github.com/kaushalmodi/eless/blob/4c4aea14f7293b25644d48ebf90dbc68cf1b3654/build/build.el#L88-L104 -- Kaushal Modi

Re: [O] Cannot get the EXPORT_FILE_NAME override to work

2017-05-04 Thread Kaushal Modi
port each one by calling > >(org-export-as 'html t) > > N.B. the subtreep setting in this call. > org-map is a golden suggestion! I'll dive into that. All said, looks like ox-publish misses an ":export_file_name" option. Don't you think? -- Kaushal Modi

Re: [O] Cannot get the EXPORT_FILE_NAME override to work

2017-05-04 Thread Kaushal Modi
s-wiki" :components ("eless-wiki-tcsh")) ("eless-all-docs" :components ("eless-html" "eless-info" "eless-readme" "eless-contributing" "eless-wiki")) ("eless-all" :components ("eless-all-docs" "eless-tangle" -- Kaushal Modi

Re: [O] Cannot get the EXPORT_FILE_NAME override to work

2017-05-04 Thread Kaushal Modi
* ((pub-dir (plist-get proj-plist :publishing-directory)) (before-name (concat pub-dir "eless.md")) (after-name (concat pub-dir "Example eless Config in tcsh.md"))) (rename-file before-name after-name :ok-if-already-exists))) -- Kaushal Modi

[O] Cannot get the EXPORT_FILE_NAME override to work

2017-05-04 Thread Kaushal Modi
subtree, narrow to it, and export that using C-c C-e h h. Again override-export-file-name.html gets created instead of foo.html. So when does the EXPORT_FILE_NAME property work? What am I doing wrong? Thanks. -- Kaushal Modi

Re: [O] LaTeX export of org file uses listings instead of minted, why?

2017-04-23 Thread Kaushal Modi
debug time is not spent on old versions. -- Kaushal Modi

Re: [O] ANN: org-sticky-header

2017-04-18 Thread Kaushal Modi
could be an > option. > > Cheers > On that note, there is also org-eldoc.el in contrib/ that sort of does what you want. "sort of" because: - Shows the breadcrumbs in the echo area instead of in header. - Shows that only when point is on an org heading, not when in the body. [image: pasted1] -- Kaushal Modi

Re: [O] Merge 9.0.5 to emacs master?

2017-04-18 Thread Kaushal Modi
s-devel discussion. I don't have experience merging mega branches, but I can help in any other way in that direction. > -- Kaushal Modi

Re: [O] Failure in compiling org-capture.el

2017-04-17 Thread Kaushal Modi
On Mon, Apr 17, 2017 at 2:05 PM Nicolas Goaziou wrote: > This was a typo of mine. Fixed. Thank you. > > Regards, > Thanks. I confirm the fix. -- Kaushal Modi

Re: [O] Failure in compiling org-capture.el

2017-04-17 Thread Kaushal Modi
; And the same here (_ (error "Invalid `org-capture--clipboards' value: %S" org-capture--clipboards) -- Kaushal Modi

Re: [O] Failure in compiling org-capture.el

2017-04-17 Thread Kaushal Modi
This patch works: >From 5edec74298a0140c5ebf55e7be0d64de6c702b17 Mon Sep 17 00:00:00 2001 From: Kaushal Modi Date: Mon, 17 Apr 2017 11:01:28 -0400 Subject: [PATCH] Fix nil case in pcase * lisp/org-capture.el (org-capture-fill-template): Use `nil for the nil case in pcase form. --- lisp/

Re: [O] Failure in compiling org-capture.el

2017-04-17 Thread Kaushal Modi
17, 2017 at 10:11 AM Kaushal Modi wrote: > I am on master branch: ea3754f. > > A recent change in org-capture.el breaks compilation: > -- Kaushal Modi

[O] Failure in compiling org-capture.el

2017-04-17 Thread Kaushal Modi
annot stat `org-capture.elc': No such file or directory make[1]: *** [install] Error 1 make[1]: Leaving directory `/home/kmodi/.emacs.d/elisp/org-mode/lisp' make: *** [install-lisp] Error 2 -- Kaushal Modi

Re: [O] is it bad to have both org and org-plus-contrib installed?

2017-04-11 Thread Kaushal Modi
> > paradox. > > > > Why couldn't there be an org-contrib package, depending on org? So that > > way org would not be duplicated in two packages. > > I've run into the same problem with Spacemacs and would welcome a > solution. > > All the best, > Tom > > -- > Thomas S. Dye > http://www.tsdye.com > -- Kaushal Modi

Re: [O] Viewing pdf images

2017-04-05 Thread Kaushal Modi
On Wed, Apr 5, 2017 at 7:52 AM Kaushal Modi wrote: > When I get to a computer, I'll confirm if the #+CAPTION: and/or #+NAME: is > needed for the inline images to show. Above works fine for exports, so I > assumed that the inline images should show fine too. > Following up on

Re: [O] Viewing pdf images

2017-04-05 Thread Kaushal Modi
referenced foo.png. [[./foo.png]] When I get to a computer, I'll confirm if the #+CAPTION: and/or #+NAME: is needed for the inline images to show. Above works fine for exports, so I assumed that the inline images should show fine too. -- Kaushal Modi

Re: [O] Viewing pdf images

2017-04-04 Thread Kaushal Modi
PM, Doyley, Marvin M. wrote: > >>>> Hi there, > >>>> > >>>> For manuscripts, my research group and I typically save images in pdf > >>>> format, much better resolution. It would be nice to view pdf images > >>>> when working in org-mode. Does anybody know how to view pdf images in > >>>> org-mode. > >>>> > >>>> Thanks, M > >>>> > >>>> PS We also work with svg images too, that would also love to view in > >>>> org-mode > >>>> > > > > > > -- > > Julian Mariano Burgos, PhD > > Hafrannsóknastofnun, rannsókna- og ráðgjafarstofnun hafs og vatna/ > > Marine and Freshwater Research Institute > > Skúlagata 4, 121 Reykjavík, Iceland > > Sími/Telephone : +354-5752037 <+354%20575%202037> > > Bréfsími/Telefax: +354-5752001 <+354%20575%202001> > > Netfang/Email: julian.bur...@hafogvatn.is > > -- Kaushal Modi

Re: [O] [PATCH] allow klipse export in html

2017-03-29 Thread Kaushal Modi
On Wed, Mar 29, 2017 at 3:18 PM Yehonathan Sharvit wrote: > Good news. Where is the commit? It's in the master branch: http://orgmode.org/cgit.cgi/org-mode.git/commit/?id=d5bbf365533ba45d72ebed8121c7612c860ea944 -- Kaushal Modi

Re: [O] Allow #+SETUPFILE to point to an URL for the org file

2017-03-13 Thread Kaushal Modi
On Thu, Dec 8, 2016 at 5:40 PM Nicolas Goaziou wrote: > Kaushal Modi writes: > > You can use something like `url-insert' and `url-retrieve' or > `url-retrieve-synchronously'. > Thanks. I am using url-retrieve-synchronously. > > Sure, but SETUPFILE stil

Re: [O] New markup for revising manuscripts

2017-03-10 Thread Kaushal Modi
#1}} > (2) \response{changes) > > Is there a more elegant way to do this ? It would be nice if I could > change the color of the select text in both org and the exported latex file > to red. Seeing the highlighted text in org would be a huge plus. > > Thanks > M > -- Kaushal Modi

[O] Merge 9.0.5 to emacs master? (Was: Release 9.0.5)

2017-02-12 Thread Kaushal Modi
wrote: > Hi all, > > Org 9.0.5, a minor bugfix release, is out. > > Thanks! > > -- > Bastien > > > -- Kaushal Modi

Re: [O] just saw this: orgzly code source available now on github

2017-02-06 Thread Kaushal Modi
Yes, he just announced that today morning: https://plus.google.com/+Orgzly/posts/7V4p8fMJwGx Thanks Neven. On Mon, Feb 6, 2017 at 11:27 AM Xebar Saram wrote: > Just saw this today in case anyone is interested :) > > https://github.com/orgzly/orgzly-android > > Z > -- Kaushal Modi

Re: [O] Help checking orgcard.pdf

2017-02-05 Thread Kaushal Modi
Thanks. Please push that for me. Can only do http push from my machine (work), external ssh is blocked. I some point, I will need to figure out a push mechanism from my phone. On Sun, Feb 5, 2017, 3:53 PM Kyle Meyer wrote: > Kaushal Modi writes: > > > Hi Kyle, > > > &g

Re: [O] Help checking orgcard.pdf

2017-02-05 Thread Kaushal Modi
ne built from the maint branch. > > Thanks. > > [*] http://orgmode.org/orgcard.pdf > > > -- > Kyle > -- Kaushal Modi 0001-Update-few-bindings-descriptions-based-on-org-9.0.4.patch Description: Binary data

Re: [O] Sync up the org in emacs master to org maint branch?

2017-01-26 Thread Kaushal Modi
On Thu, Jan 26, 2017 at 10:39 AM Kyle Meyer wrote: > Kaushal Modi writes: > > > On Thu, Jan 26, 2017 at 1:19 AM Kyle Meyer wrote: > > > >> We'd want at least one more release from maint, I think, so that'd be > >> 9.0.5. > > > > Wo

Re: [O] Sync up the org in emacs master to org maint branch?

2017-01-26 Thread Kaushal Modi
od time to sync the Emacs master? > > On `master`, "now" is pretty much *always* a good time to sync. > More specifically, it's better to always keep `master` in sync with the > upstream (applies not just to Org). > > "sync early, sync often", > +1! -- Kaushal Modi

Re: [O] Can't install org-plus-contrib from org elpa

2017-01-25 Thread Kaushal Modi
t; It's as if it's looking for a specific org-plus-contrib-.tar ? Never > had this problem before. > Call package-refresh-contents unconditionally. That should fix the problem. > LB > -- Kaushal Modi

[O] Sync up the org in emacs master to org maint branch?

2017-01-25 Thread Kaushal Modi
acs master completely, but if not, then at least as backup we have a newer org version to go out with that release. -- Kaushal Modi

Re: [O] is it bad to have both org and org-plus-contrib installed?

2017-01-24 Thread Kaushal Modi
ges depend on org. > > Is this a bad thing? And is there a way to make sure package > dependencies pick up org-plus-contrib when it is installed, and do not > install org as well? > > Thanks, > > Alan > > -- > OpenPGP Key ID : 040D0A3B4ED2E5C7 > Monthly Athmospheric CO₂, Mauna Loa Obs. 2016-12: 404.48, 2015-12: 401.85 > -- Kaushal Modi

Re: [O] Org release_9.0 hangs

2017-01-17 Thread Kaushal Modi
git checkout release_9.0 > make autoloads > -- Kaushal Modi

Re: [O] Right way to add special processing to images?

2017-01-12 Thread Kaushal Modi
as to mark them, collect them and build some > special page at the end of a slide with the information. > Thank you. That looks like a simple and safe idea. I will do that. -- Kaushal Modi

Re: [O] org-mime: improve handling of cc & bcc

2017-01-12 Thread Kaushal Modi
/msg00055.html ? On Thu, Jan 12, 2017 at 3:01 PM Nicolas Goaziou wrote: > Thank you. > > Could you send it again using git format-patch and with a proper commit > message? > > Regards, > > -- > Nicolas Goaziou > > -- Kaushal Modi

Re: [O] [PATCH] org-mime supports emacs24

2017-01-12 Thread Kaushal Modi
re, I will contact marmelade and melpa maintainer asap, for now, > There are also some pull request and bugs I need handle. So it could > take a few days. > > -- > help me, help you. > > -- Kaushal Modi

[O] Hopes of making orgmanual.org the official manual?

2017-01-12 Thread Kaushal Modi
switching to org manual step is delayed, there might not be enough motivation to keep orgmanual.org maintained. -- Kaushal Modi

[O] Right way to add special processing to images?

2017-01-12 Thread Kaushal Modi
not exist ;; https://www.gnu.org/software/emacs/manual/html_node/elisp/Testing-Accessibility.html (message "%s" cmd) (shell-command cmd = If interested, here is the code and MWE on my github repo: https://github.com/kaushalmodi/.emacs.d/tree/master/elisp/org-include-img-from-pdf -- Kaushal Modi

Re: [O] Org Mode Research

2017-01-07 Thread Kaushal Modi
Dye wrote: > > FYI, the survey appears to be market research for non-GPL vaporware. > -- Kaushal Modi

<    1   2   3   4   5   6   7   8   9   >