[O] Latex index using makeidx

2015-08-01 Thread Vikas Rawal
I am adding index entries in an org document, to be used with makeidx latex package. While the usual \index commands are working without any problem, I was wondering if anyone knows of an existing emacs utility that would add an autocomplete kind of facility (on the basis of previous entries) wh

[O] hiwin-mode and org-indent face

2015-08-01 Thread Linus Arver
Hello, I use hiwin-mode [1] which changes the background color of all faces in the inactive window to a different color (I am assuming this is how it works). Unfortunately it does not change the background color for the 'org-indent' face which I believe is used to set the color for the indentation

Re: [O] Insert org-id Link at Point via Outline Path Completion

2015-08-01 Thread Dominic Surano
Sorry, I meant to get to this yesterday. See my question on Emacs StackExchange and my configuration file wher

Re: [O] Babel results in other lang code

2015-08-01 Thread Charles C. Berry
On Sat, 1 Aug 2015, Satoru KURASHIKI wrote: hi, I've tried to write babel extension for typescript. cf. https://github.com/lurdan/ob-typescript Because "results: code" forces same language in results, it outputs transpile results enclosed with #BEGIN_SRC js #END_SRC assuming "results: raw". I

Re: [O] Insert org-id Link at Point via Outline Path Completion

2015-08-01 Thread John Kitchin
usually it is pretty easy to add new functions in helm, but it is less easy in this case because the source is dynamically generated from a function. So, in this case I think we have to just redefine the function that generates the source. here is an example that I think makes an id link as a new a

Re: [O] Insert org-id Link at Point via Outline Path Completion

2015-08-01 Thread Xebar Saram
Hi again so excited over this had to ask 2 more questions ;-) 1.can that function include/link to org-id (so that it can keep the links even if the headers move around in/out of the files) 2.i saw there are 3 options to that helm function. can this be customized to add more commands (can really

Re: [O] create a "send plain text/pdf email with current header" function?

2015-08-01 Thread Matt Price
After getting some help from the list, I wrote a post about something pretty close to what you want here: http://matt.hackinghistory.ca/2015/07/15/mailing-subtrees-with-attachments/ There's a little more code there than you actually need, but some of it may be helpful. Happy to answer questions,

Re: [O] Insert org-id Link at Point via Outline Path Completion

2015-08-01 Thread Xebar Saram
John, this is superb! thx so much it answers all my needs, what a great find :) kind regards Z On Sat, Aug 1, 2015 at 7:33 PM, John Kitchin wrote: > (helm-org-agenda-files-headings) seems to do this already for all > headlines in your agenda files. the third action is to insert a link to > th

Re: [O] Insert org-id Link at Point via Outline Path Completion

2015-08-01 Thread John Kitchin
(helm-org-agenda-files-headings) seems to do this already for all headlines in your agenda files. the third action is to insert a link to the selected headline. You can use let to temporarily define the org-agenda-files list to what you want, and just use the (helm-org-agenda-files-headings) comma

Re: [O] Auto insert and change date in header?

2015-08-01 Thread John Kitchin
This seems to do what you want for the changes. The timestamp is automatically added when you make changes. It does not propagate timestamps up though, so if you change a subheading the timestamp there is updated, but the one in the parent for example. also, this will update every headline. You m

Re: [O] create a "send plain text/pdf email with current header" function?

2015-08-01 Thread John Kitchin
You probably could use the function here https://github.com/jkitchin/jmax/blob/master/email.el#L51 for the email part after you find the heading you want to send. I think there is some code there to send a pdf too. On August 1, 2015, at 10:49 AM, Xebar Saram wrote: Hi all i find that i keep

[O] create a "send plain text/pdf email with current header" function?

2015-08-01 Thread Xebar Saram
Hi all i find that i keep copy pasting food recipes (which i collect with org obviously) to my email client and then sending it over to the phone to use in the kitchen (which reminds Me really should get a emacs touch screen for the kitchen..though my wife would get a stroke if she sees that ;-)).

Re: [O] Auto insert and change date in header?

2015-08-01 Thread Xebar Saram
Hi all coming back to it after 3 years :) im wondering if anyone has a hook or anything like that that auto adds a date when he creates a header. and maybe also auto change the date each time the text under the header is changed? kind of simulating a timestamp type function :) best Z On Fri,

Re: [O] Insert org-id Link at Point via Outline Path Completion

2015-08-01 Thread Xebar Saram
Thx so much Bernhard this looks really promising. i never had luck with either company or auto-complete t o get it to work reliably (it often stops working even though its still in the mod bar). anyway i tried it and added this to my config (after cloning from git): (add-to-list 'load-path "/home

[O] [PATCH] Re: function for cleaning org-attach directories

2015-08-01 Thread Eric Abrahamsen
Alan Schmitt writes: > On 2015-07-18 05:11, Eric Abrahamsen writes: > >> Alan Schmitt writes: >> >>> I gave this a try and it seems that `org-attach-directory' needs to be >>> defined for it to work. I'm surprised because I never configured this >>> and with gnorb I have had files attached usin

Re: [O] Insert org-id Link at Point via Outline Path Completion

2015-08-01 Thread Bernhard Pröll
Hi Saram, I've been in the same boat and decided to write a company-backend for this purpose. So if you're already using company-mode, this may be worth looking into: https://github.com/mutbuerger/company-org-headings Keep in mind that I'm in the process of learning Elisp and there has been lit