Re: Storing org-mode captures on shared server

2024-08-25 Thread George Mauer
To be more specific...dropbox. I simply put all my notes into one folder that is synced by Dropbox so they're available everywhere and backed up automatically. Even better if you use roam for notes since it naturally wants to put them all in one place. Of course, as mentioned, it doesn't actually

[BUG] org-element--cache Cached element is incorrect (ox-hugo) [9.6.10 (release_9.6.10 @ /home/gk/.emacs.d/lib/org/lisp/)]

2023-10-23 Thread George Kettleborough
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See https://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list. -

Re: [BUG] Contents of the *Warnings* buffer, which has begun popping up at random intervals

2023-05-13 Thread George Mauer
Not at my computer now, but that looks like a warning I've been getting pretty constantly for a few weeks and have an investigated. I assumed it was coming from org-ai as I just recently added to that to my workflow and use it a lot, but maybe not On Sat, May 13, 2023, 17:22 Tom Davey wrote: > I

Re: Interest in an Org video meetup?

2023-04-27 Thread George Mauer
✋ Interested as well On Thu, Apr 27, 2023, 07:43 Dave Marquardt wrote: > Russell Adams writes: > > > Would there be any interest in a monthly 1-2 hour long ad-hoc screen > > sharing and video discussion for Org-mode? > > I'm interested. > > -Dave > > >

Re: A dream?

2023-04-03 Thread George Mauer
Emacs is a complex tool that itself can take a semester or more to get productive in. I know I myself tried for years to move to it and was only able to after learning vim bindings pretty well, and starting to use Spacemacs. Forcing students to use emacs, much less org - especially in this day and

Re: Thoughts on this ob language generator

2023-01-14 Thread George Mauer
t;clojurescript" :npx-arguments "nbb") #+end_src #+begin_src clojurescript (prn (+ 1 2 3)) #+end_src #+RESULTS: : 6 Never pushed anything to MELPA before but will have to take a look at how to do this. On Sat, Jan 14, 2023 at 7:41 PM Tim Cross wrote: > George

Thoughts on this ob language generator

2023-01-13 Thread George Mauer
I had a need the other day to execute some typescript in an org document. Now I know that there's an ob-typescript package but that doesn't quite work the way I want and expects typescript to be installed globally (which runs into a variety of versioning issues). There is a better option available

Re: Get the "closest" property value

2022-10-12 Thread George Mauer
o open up a few new workflows for me. On Wed, Oct 12, 2022 at 4:29 AM Ihor Radchenko wrote: > George Mauer writes: > > > If I have a document what looks like the following. What code could I run > > for the ??? to get the property value for "workspace-directory" that

Get the "closest" property value

2022-10-08 Thread George Mauer
If I have a document what looks like the following. What code could I run for the ??? to get the property value for "workspace-directory" that is closest in the outline to the location running the code? * Top Level :PROPERTIES: :workspace-directory: /tmp :END: #+begin_src emacs-lisp

Re: Interest in an Org video meetup?

2022-10-07 Thread George Mauer
I would try to join. One thing I always mention when conversations about recording come up is that if you promote recordings as a resource, it is considered good form to have transcription available. I'm pretty sure a community effort like this world be under no ADA obligations (unlike company mee

Re: Simple but repetitive http links

2022-09-07 Thread George Mauer
Also worth mentioning that revert-buffer is your go to "kill buffer and reopen" command On Wed, Sep 7, 2022, 08:51 Christian Moe wrote: > > Hi, > > Org scans the file for link definitions when you visit it, so when you > type in the link definition in the buffer, Org is not automatically > aware

[BUG] org babel python execute from local buffer to remote session [9.5.4 (9.5.4-ge0b05b @ /home/moutsopoulosg/.emacs.d/elpa/org-9.5.4/)]

2022-08-26 Thread George Moutsopoulos
Hi all. I often need to run some code on a remote ssh session, because only there I can access a database and the environment is hard to replicate, while I want to keep the code I run on my local machine. The remote session is initialised with run-python after I change default-directory and use py

Re: Utility of description lists

2022-06-17 Thread George Mauer
It is not quite true that it's just a way of formatting, there is a semantic element to it as well where someone parsing your document programmatically can now know that what you have is a list of terms paired with their descriptions. In fact, when exporting to html you get a description list

Re: Time Based Log Formatting

2022-02-11 Thread George Mauer
If tab doesn't work because tab is bound to a command, you can often insert a literal tab with C-q Tab On Fri, Feb 11, 2022, 14:14 Robert Love wrote: > I use Org Mode to log data while monitoring events. I used YASnippets to > insert time but Org mode flushes every thing left. What I get look

call blocks as a function from inside elisp code

2022-01-19 Thread George Mauer
Hi everyone, I know that I can call a source block as a function in a header argument such as :var, inside noweb annotations, or with a #+call: as described here https://orgmode.org/manual/Evaluating-Code-Blocks.html I am interested in going one step further though. I have one emacs-lisp block t

format/fill of text in a cell in tables

2021-12-16 Thread George Michaelson
useful to recognize the output is often table edit states which do respect fill/wrap/center (If this is documented or I missed how it can be done, apologies. My reading strongly suggests its in extensions, and not really supported in the model) -George

Re: Orgdown: negative feedback & attempt of a root-cause analysis

2021-12-01 Thread George Mauer
Thank you for writing all this down Karl. Thank you for your efforts and I truly am sorry for everything you've been put through emotionally. I know very well how a few particularly nasty comments can sap your energy as the brain cycles on them over and over. I hope you come out of this the strong

Re: "Orgdown", the new name for the syntax of Org-mode

2021-11-28 Thread George Mauer
Agree with Joost. If I remember correctly, the "down" part of markdown was meant as a play on words to indicate that, unlike a proper markup language, markdown has a direction and a value system but no defined standard. Since org is definitely not that why must the waters? Just go for clarity. On

Cascading cookie counts

2021-07-23 Thread George Mauer
* Cascading Checkbox Cookie Counts I would like checkbox cookies to show the total of all cookies beneath them regardless of hierarchy nesting. The code for ~org-update-checkbox-count~ is more complex than I expected so before spending time digging into this, maybe someone here has a tip? ** T

Re: A requires/provides approach to linking source code blocks

2021-07-13 Thread George Mauer
In implementing an extension you might consider doing it as a generalized form of what I did with ob-racket (https://github.com/togakangaroo/ob-racket ). I think it is best to rely on the import/require/include mechanism of the language you're using. Pretty much all of them support adjacent files.

Re: Export Org mode files to (gag, barf) MS Office?

2021-06-26 Thread George Mauer
For anyone who has never tried it, I'll add that the open office formats are an absolute beast to export to. I can't say for sure about docx but I've done my time building a PowerPoint exporter (on top of Microsoft provided ooxml libraries even). It is complex enough that I'm not even sure such an

Re: appearance of list as results from evaluating code blocks

2021-06-23 Thread George Mauer
What about :results code The default is a elisp code block so you get syntax coloring On Wed, Jun 23, 2021, 16:22 Rodrigo Morales wrote: > Johannes Brauer writes: > > Johannes Brauer writes: > > > thanks, that works > > While that works, you might be interested in ":results verbatim" instead >

Re: Hiding results using :post

2021-06-07 Thread George Mauer
l Engineering > Carnegie Mellon University > Pittsburgh, PA 15213 > 412-268-7803 > @johnkitchin > http://kitchingroup.cheme.cmu.edu > > > > On Mon, Jun 7, 2021 at 5:21 PM George Mauer wrote: > >> Woah woah. What is the jupyter-python language, John? >> >

Re: Hiding results using :post

2021-06-07 Thread George Mauer
Woah woah. What is the jupyter-python language, John? On Mon, Jun 7, 2021, 15:44 John Kitchin wrote: > This is doable with a hook and advice I think. The hook will hide the > results if you use :results hide in the header. > > I had to use the advice to remove the results before hand, so that yo

Re: plantuml, png and caching

2021-04-15 Thread George Mauer
I would expect it to work. After all, it could be incredibly useful to bump that up to a :header-args:plantuml: property on the heading On Thu, Apr 15, 2021 at 12:48 PM CS Suehs wrote: > Nick, > I had the :cache yes on the same line with #+BEGIN like > #+BEGIN_SRC plantuml :file helloworld.png :

Re: Using backticks for the inline code delimeter?

2021-03-31 Thread George Mauer
andoc-import to > automatically convert/reconvert other formats as needed, and > https://github.com/tecosaur/emacs-everywhere to do it even in other > applications. > > It's not perfect - I still have to type Markdown sometimes, but you > can eventually start losing th

Using backticks for the inline code delimeter?

2021-03-31 Thread George Mauer
Markdown uses backticks to denote inline code which should get special (typically monospace) formatting, org uses the tilde character. Now I know that org is not markdown, is far more powerful than markdown, and is not (mostly) the same use cases as markdown. But this one use case *does* overlap.

Re: How to get shell source blocks to read my profile?

2021-03-16 Thread George Mauer
hed processes, but I can't find anything to that effect in the docs On Tue, Mar 16, 2021, 07:32 Maxim Nikulin wrote: > On 16/03/2021 00:49, George Mauer wrote: > >shell-file-name: "/bin/zsh -i" > > I am afraid, you should be prepared to face some problem accidentall

Re: How to get shell source blocks to read my profile?

2021-03-15 Thread George Mauer
will make shell (which is zsh in my case) run in interactive mode for all of these * Local Variables :noexport: :PROPERTIES: :VISIBILITY: folded :END: local variables: shell-file-name: "/bin/zsh -i" end: On Sun, Mar 14, 2021 at 11:04 PM Tim Cross wrote: > > comme

Re: How to get shell source blocks to read my profile?

2021-03-14 Thread George Mauer
t a line like the following into each of these files > > echo "Executing at `date`" >> ~/profile.log > > just to see what is getting executed when (you won't want to leave this > there - just for diagnostic and experimentation to help understand when >

How to get shell source blocks to read my profile?

2021-03-14 Thread George Mauer
I am confused why no matter how I try to run shell commands they seem to be missing variables exported in profiles. I have added 3 variables to various startup scripts - ~./bash-profile~ :: ~export GIM_BASH_PROFILE="yes"~ - ~./bashrc~ :: ~export GIM_BASHRC="yes"~ - ~./zshrc~ :: ~export GIM_

noweb expansion when eval and not tangle?

2021-02-19 Thread George Mauer
I would like noweb to expand during eval but *not* tangle. Is this possible? I realize I can achieve the same effect with multiple code blocks but it seems an odd asymmetry to not be able to do this directly. Is it possible and just not documented?

Re: ist here a :post header arg for tangling?

2021-01-04 Thread George Mauer
> hasn't changed, meaning that it will not trigger recompile. > The project is private now but if you're interested I can give you access > to it. > What exactly are you trying to do? > Immanuel > > On Fri, Jan 1, 2021 at 2:09 AM George Mauer wrote: > > > &

ist here a :post header arg for tangling?

2020-12-31 Thread George Mauer
I'd like to run some code to post-process files after they are tangled. Is there a header-arg for that?

Re: Emacs as an Org LSP server

2020-12-13 Thread George Mauer
I think maybe you might be thrown off by the word "server"? Lsp is just a standardization of how an editor can do language-specific things. The fact that standardization exists makes the whole thing pluggable by various services. These typically run in a separate process - which is a good idea anyw

Html export custom container with attribute

2020-12-12 Thread George Mauer
a lot, George

Why are some headings html exported as lists while others aren’t?

2020-12-08 Thread George Mauer
I am practicing with org->html conversion by trying to export an html resume. I have the following * Resume ** About :PROPERTIES: :HTML_CONTAINER: header :END: *** George Mauer :PROPERTIES: :HTML_CONTAINER: h1 :END: *** Contact :PROPERTIES: :HTML_CONTAINER: arti

Re: How to evaluate source code while in the edit buffer?

2020-12-04 Thread George Mauer
+1 to this question. I have the exact same annoyance (would also be nice to do some threading so it doesn't lock up emacs for a few seconds) On Fri, Dec 4, 2020 at 2:28 PM Pankaj Jangid wrote: > Mirko Vukovic writes: > > > My current workflow is > > > >1. Enter edit buffer (C-c ') > >2.

Re: Remembrance Agents

2020-11-28 Thread George Mauer
As far as I know the only thing remotely like that is the org-roam buffer when you are in a file managed by org-roam. This would be simply a linkable list of other roam notes which reference the currently viewed note So not exactly what you're looking for I suspect but a similarish concept On Sat

Re: How to get a block’s contents by name

2020-11-27 Thread George Mauer
Well that pains me on a software-engineer-aip-design level but that works! Thanks a lot. On Fri, Nov 27, 2020 at 8:22 PM Kyle Meyer wrote: > George Mauer writes: > > > I'm trying to figure out how I could fetch the contents of another block > by > > name from an elis

How to get a block’s contents by name

2020-11-27 Thread George Mauer
I'm trying to figure out how I could fetch the contents of another block by name from an elisp script I've seen `org-sbe` but I just want to get the block contents, (ideally with noweb and vars filled in - just as it would be tangled if we were to tangle it) How do I do that?

Cannot load om while trying to load org

2020-10-25 Thread George Mauer
This might be a spacemacs-specific error, but maybe people here can help me out? I am getting the following error on org load > (file-missing "Cannot open load file" "No such file or directory" "om") (full stacktrace below) Indeed, I get this: > (require 'om) > *** Eval error *** Cannot open l

Control where files are emitted during block eval

2020-09-16 Thread George Mauer
I would like to create a playground.org file inside my node project where I will put bits of code that I'm playing with during development. The problem is that when I actually evaluate a source block it gets written into a temporary location that I do not control - I therefore cannot `require` my

Re: Can you automatically noweb include?

2020-08-08 Thread George Mauer
For what its worth, I maintain (well maintain is a big word when I'm also probably the only person to use it) this fork of xchrishawk/ob-racket: https://github.com/togakangaroo/ob-racket It seems to have more features than the wallyqs one supporting :var headers. I can look at how prologue support

Re: Can you automatically noweb include?

2020-08-07 Thread George Mauer
use C-c C-v C-i to see what header args org > has detected for a source block. Misspelled words sometimes wreak havoc and > invisible characters can cause real pain. > >>>> > >>>> > >>>> Also, it helps to use C-c C-v C-v to to see the expanded code b

Can you automatically noweb include?

2020-08-05 Thread George Mauer
Use case: I'm using ob-racket but this would apply just as well to a few other workflows I have with python or js. I would like to write a helper function in a src block and then automatically have access to it in other src blocks further down the docum

Updates to ob-racket mode, code review request

2020-07-09 Thread George Mauer
I'm a big fan of using org mode to learn languages and have been using it for Racket (sorry Dr Racket, I just love emacs too much). It's been mostly fine and I've made a few patches to the [`ob-racket`]( https://github.com/xchrishawk/ob-racket) I've been using. Recently I've started to move into th

Get generators working in an src block?

2020-07-04 Thread George Mauer
I prefer to use source blocks for pretty much all my language learning. I am trying to figure out generators in emacs-lisp but can't seem to run it in a block. I have ``` #+begin_src emacs-lisp :results output (setq lexical-binding t) (require 'generator) (iter-defun my-it

Bug: Export to html not working [9.3.7 (9.3.7-2-g706970-elpaplus @ /Users/gmauer/.emacs.d/elpa/develop/org-plus-contrib-20200608/)]

2020-06-12 Thread George Mauer
Remember to cover the basics, that is, what you expected to happen and what in fact did happen. You don't know how to make a good report? See https://orgmode.org/manual/Feedback.html#Feedback Your bug report will be posted to the Org mailing list. --

Re: Get Grades Done: the joys of Org's simple power

2020-06-10 Thread George Mauer
You know...I believe some people have gotten emacs running in browser... You could do it by compiling it to wasm. So in theory you could create a completely in-browser emacs which is optimized primarily for org mode usage. Would be kind of an awesome thing for someone to tackle as it would greatly

How to supply multiples of a custom src block header arg

2020-05-31 Thread George Mauer
It would seem that `:var` in src blocks gets special treatment. I am hacking on ob-racket trying to add the ability to require from a header (the `:results value` mode wraps everything in a `let` so you need something special to put requires at the top level). I do this ``` #+begin_src racket :r

How to both export html and show the code?

2020-05-27 Thread George Mauer
I would like to both render html and show a source block for the rendered html (I am aware of ob-browser, but I want this to be dynamic html content, not an image) I would have thought the following would work, but noweb returns an empty string Well, this is solvable with css is it not?

Re: Org-agenda ignores archive tag set by "#+FILETAGS: ARCHIVE"

2020-05-25 Thread George Sokolsky
Kyle Meyer writes: > Bastien writes: > >> George Sokolsky writes: >> >>> I have .org files with "#+FILETAGS: ARCHIVE" headers. >> >> Shouldn't it be "#+FILETAGS: :ARCHIVE:" instead? >> >> (Note the columns.) >

Re: [PATCH] agenda: Consider FILETAGS for archive skipping

2020-05-21 Thread George Sokolsky
Thank you Kyle On May 21, 2020 5:05:10 AM GMT+02:00, Kyle Meyer wrote: >George Sokolsky writes: > >> Kyle, could you please apply the patch to the org repository? > >Applied (5e2490bdf).

Re: [PATCH] agenda: Consider FILETAGS for archive skipping

2020-05-18 Thread George Sokolsky
Kyle, could you please apply the patch to the org repository? Thank you George Bastien writes: > Hi George, > > George Sokolsky writes: > >> For avoidance of doubt - this is Kyle's patch, not mine (thank you >> Kyle!) > > Sorry for the confusion, I though

Re: [PATCH] agenda: Consider FILETAGS for archive skipping

2020-05-18 Thread George Sokolsky
For avoidance of doubt - this is Kyle's patch, not mine (thank you Kyle!) Bastien, do you mean that this patch will be in the next weekly org build on melpa? Thank you George Bastien writes: > Hi George, > > thanks for your patch! > > George Sokolsky writes: > >&

Re: [PATCH] agenda: Consider FILETAGS for archive skipping

2020-05-18 Thread George Sokolsky
te ways of applying ARCHIVE tag to items in org. As such I'd love the below patch included into the official org distribution. I'm trying to add Bastien into recepients of this e-mail - or could anyone please help with commiting the below code into the org repository? Thank you, George

Org-agenda ignores archive tag set by "#+FILETAGS: ARCHIVE"

2020-05-16 Thread George Sokolsky
Hello! I have .org files with "#+FILETAGS: ARCHIVE" headers. I want items from these .org files to be hidden by default from results of "org-agenda" -> "s Search for keywords" by default. This is not the case, unfortunately. Calling "org-agenda-archives-mode" in agenda view also ignores items

How to get all headings from current location up to the root

2020-04-11 Thread George Mauer
I feel silly that I can’t figure this out but how do I get the current heading, its parent, its parent parent, etc via elisp?

Improving Org Mode for VSCode - Thinking Aloud

2020-04-01 Thread George Mauer
With VSCode becoming ever-popular it seems like there might be some value in getting org mode working there simply as a way of promoting org as an excellent literate coding notebook. VSCode already has a halfway decent org-mode but it doesn’t support anything from Babel. I’m trying to think of rel

results block doesn't get replaced when doing :results raw

2020-03-10 Thread George Mauer
I've seen this happening a lot in a variety of modes. When I do `:results raw`, on subsequent evaluations, rather than replacing the results block, it gets appended to. This is almost never what I want. I remember seeing some use of `:results raw replace` in some manual or another but that never

Re: Powershell scripting with org-babel

2020-02-10 Thread George Mauer
> Micro$loth WindBlows is a computer virus Well that's mature and appropriate. I recently did an implementation of `ob-pwsh` for supporting powershell core (it assumes there’s a pwsh command available on PATH though thats configurable with `org-babel-command:pws`). Here’s the link https://github.

Have :var reference a value

2019-12-08 Thread George Mauer
I'm playing around with learning racket in an org buffer and I have a bunch of blocks that look like this #+begin_src racket :var value="abbracadaabra" ...do stuff with value... #+end_src #+begin_src racket :var value="abbracadaabra" ...do other stuff with value... #+end_src I

Re: “Literate” python?

2019-11-29 Thread George Mauer
I've used noweb references to actually assemble what will be tangled all at once. See how I did it here . The reason why the "incorrect" block is outdented is that tangle automatically tries to guess indentation level. (

Re: Org export to HTML with encrypted information ??

2019-11-29 Thread George Mauer
Basic "I'm not too worried about it" level of security: stick it on a webserver using .htaccess to demand a password. Make that password halfway decent. Better option: export to PDF by either exporting to HTML or latex and then using that system's PDF export. Keep both PDF and original in a folder

[O] Bug: Clock/Time summaries don't work across years [9.1.9 (release_9.1.9-65-g5e4542 @ /usr/share/emacs/26.1/lisp/org/)]

2019-04-28 Thread George Kontsevich
ust one hour! Fortunately I noticed this bug before I submitted incorrect timesheet totals to my employer :) George Emacs  : GNU Emacs 26.1 (build 2, x86_64-pc-linux-gnu, GTK+ Version 3.24.7)  of 2019-04-11, modified by Debian Package: Org mode version 9.1.9 (release_9.1.9-65-g5e4542 @ /usr/shar

Re: [O] org to static site?

2017-12-01 Thread George myglc2 Clemmer
On 12/01/2017 at 17:17 Tory S. Anderson writes: > I've got a single-chord setup with Hugo, adapted from: > http://www.holgerschurig.de/en/emacs-blog-from-org-to-hugo/ > > I'm very pleased with it. That's cool, but I wanted to avoid "external" components like frameworks, site generators, and theme

Re: [O] org to static site?

2017-12-01 Thread George myglc2 Clemmer
t; > So, I would love to hear what you all recommend. [...] No doubt too late for your teaching website, but you may find this interesting ... https://github.com/myglc2/emacsite HTH - George

[O] interaction of =org-export-babel-evaluate= and =results output= counter-intuitive

2017-08-15 Thread George Jones
__ INTERACTION OF `ORG-EXPORT-BABEL-EVALUATE' AND `RESULTS OUTPUT' COUNTER-INTUITIVE George Jones __ <2017-08-15 Tue 08:23> I want to define code blocks that exp

Re: [O] Inline notes and alignment

2017-03-22 Thread George Kettleborough
ncode the indentation in my files too before I discovered that indent mode which lets you easily switch the indentation on and off for the entire buffer and is just generally easier to use (imo). George.

Re: [O] ob-shell: using a table variable with bash

2017-03-08 Thread George Kettleborough
cumentation for ob-shell. I had to read the source code. I have documented it as a code comment in my patch (with proper commit message). Thanks, George. >From 97dadaf0ba0f18772d4d8ac968ea63374937b179 Mon Sep 17 00:00:00 2001 From: George Kettleborough Date: Wed, 8 Mar 2017 11:25:37 +00

[O] ob-shell: using a table variable with bash

2017-03-03 Thread George Kettleborough (EI)
our if so would be better? This would seem to be a fine fix which maintains backwards compatibility unless there is a reason to set :separator but still expect the new behaviour. Thanks, George. diff --git a/site-lisp/org/ob-shell.el b/site-lisp/org/ob-shell.el index 9c22af8..6f5f76e 100644 ---

Re: [O] latex export creates "auto" directory

2017-03-03 Thread George Kettleborough (EI)
On 03/03/17 15:55, Takeshi Teshima wrote: I have a question regarding latex export. When I export an org-mode to a latex file, a directory named "auto" is created in the same folder as the tex file. However, I couldn't find what line in the source code of org-mode creates this directory. Does

[O] timestamp variables

2016-10-18 Thread George Dowding
lace as they change. * releases ** foo DEADLINE: <2017-01-31 Tue> ** foo.1 DEADLINE: <2017-03-01 Wed> ** bar DEADLINE: <2017-06-01 Thu> * proj1 ** TODO bug1 DEADLINE: ** TODO bug2 DEADLINE: ** TODO bug3 DEADLINE: * proj2 ** TODO feat1 DEADLINE: ** TODO feat2 DEADLINE: ** TODO feat3 DEADLINE: Thanks, George

[O] How to add a test?

2016-02-28 Thread George M Jones
there it looks like you just add to the correct file in org-mode/testing/examples/*.org and the corresponding /org-mode/testing/lisp/test-*.el file. Am I missing anything? I'll add to the README or docs unless it's already there. Thanks, ---George Jones

Re: [O] links in headlines and org-bbdb-anniversaries

2016-01-28 Thread George McNinch
Kyle> I believe this is the same issue as Kyle> http://thread.gmane.org/gmane.emacs.orgmode/104539. Kyle> It's been fixed and will be available in the next ELPA build. Whoops; thanks -- I missed that. -gm -- =---= George McNinch

[O] links in headlines and org-bbdb-anniversaries

2016-01-28 Thread George McNinch
nda, and those headlines contain [bbdb:...][...] links. All the best, gm -- |∈|∋| George McNinch |∈|∋| http://gmcninch.math.tufts.edu

[O] property list indentation and TODO state changes

2015-09-03 Thread George McNinch
"APPT" [2015-09-03 Thu 09:04] - [2015-09-03 Thu] a comment :END: --- so the LAST_REPEAT works as expected, but the indentation is still odd. org-version: 8.3.1 (from elpa). Best, george -- +=+=+ George McNinch +=+=+ http://gmcninch.math.tufts.edu

[O] Cannot get capture to work on Emacs 24.3.1 - Org itself does work

2015-06-12 Thread George Taylor
I cannot get Capture to work. Summary: I have successfully installed and used emacs on my laptop, and am happily using Org mode. I cannot get Capture to work. I have edited my .emacs file, but I am getting an error when starting emacs, and C-c c does not work. Detail: I have installed 24.3.1

[O] stty fails in babel sh blocks, workaround?

2015-04-08 Thread George Jones
input: Inappropriate ioctl for device -- I realize this is probably inherent to the design/the way babel works, but are there any workaround (creating fake terminals, etc)? Thanks, ---George Jones

[O] Bug: recurring mesages - Invalid face reference: nil [nnn times] [8.2.7b (8.2.7b-1-ga5beff-elpa @ c:/home/george/.emacs.d/elpa

2014-06-30 Thread George Pearson
list. Emacs : GNU Emacs 24.3.1 (i386-mingw-nt6.2.9200) of 2013-03-17 on MARVIN Package: Org-mode version 8.2.7b (8.2.7b-1-ga5beff-elpa @ c:/home/george/.emacs.d/elpa/org-20140630/) current state: == (setq org-ctrl-c-ctrl-c-hook '(org-bab

[O] babel sh session eats '>' after first src block

2014-04-26 Thread George Jones
This may be expected behavior, but it was unexpected to me: '>' in sh :session output eaten after first src block. Clues, RFTMs (I tried), workarounds? Thanks, ---George Jones redirect-test.org- * Session output with ">&q

[O] "Symbol's function definition is void: org-export-dispatch"; don't forget to "make autoloads"

2013-10-23 Thread George Jones
sting is to document it the mailing list so others experiencing the same symptom can find the solution, even it it is "well, duh"/RTFM. ---George Jones

[O] ox-bibtex.el references working in sample.org

2013-05-13 Thread George Jones
old-style stuff here. Next battle. What we want is illustrated by figure \ref{WhatWeWant} #+CAPTION: What we want #+LABEL: fig:WhatWeWant Thanks for your work/help, ---George Jones simple.org Description: Binary data

[O] Upgrading to the new exporter; documenting my experience

2013-05-11 Thread George Jones
hould work if you download it. I'm not completely moving over yet. Gotta get the ox-bibtex stuff working (export citations and bibliography to .html and .tex). Nicolas sent me a test version, and it works for tex/pdf, but has a few issues with HTML. It's getting (gitting ?) there. ---George Jones ** **

Re: [O] Emacs-orgmode Digest, Vol 85, Issue 5

2013-03-06 Thread George Jones
example .org and .bib that exports to both .tex and .html with a citation? I'd be glad to use org-exp-bibtex while the new cite: (or whatever) format is worked out. Been beating my head on this for a few days. Thanks, ---George Jones

Re: [O] org-mime-htmlize

2013-01-01 Thread George McNinch
; error. Bastien> I fixed this, the first patch applied was wrong. I "git cloned" just now, compiled, restarted emacs. Now when I do M-x org-mime-htmlize in a message buffer, I get org-export-as-org: Wrong type argument: listp, string (Is a backtrace useful?) -g -- George McNinch http://gmcninch.math.tufts.edu

Re: [O] org-mime-htmlize

2012-12-31 Thread George McNinch
Hi, Concerning: Bastien> Hi George, thanks for reporting this. Bastien> Eric Schulte writes: >> From cf2128fb320f714f78fa54b953405d01fa73bf33 Mon Sep 17 00:00:00 >> 2001 From: Eric Schulte Date: Fri, 28 Dec >> 2012 08:20:56 -0700 Subject: [PATCH

Re: [O] Errors from remote sh scripts somewhat non-intuititve

2012-12-29 Thread George Jones
On Sat, Dec 29, 2012 at 5:44 AM, Bastien wrote: > For me, when the dir is available, I get a command not found > for the xecho command. > Same here, after a git-update of org-mode. Not sure what the issue was Thanks, ---George

[O] Errors from remote sh scripts somewhat non-intuititve

2012-12-28 Thread George Jones
d. Thanks, ---George Jones shErrors.org Description: Binary data

[O] org-mime-htmlize

2012-12-28 Thread George McNinch
result is the following error: org-export-as-html: Wrong type argument: stringp, t Here is the backtrace: backtrace Description: Binary data -gm -- George McNinch http://gmcninch.math.tufts.edu

[O] errors setting sh arrays

2012-12-26 Thread George Jones
Next up, it seems that I have to use a :session to set arrays in sh code on a remote system or you get a shell syntax error. See attached .org file arrayRemote.org Description: Binary data

Re: [O] remote execution in heterogeneous environment

2012-12-23 Thread George Jones
Success. No setting of temporary-file-directory needed. Thanks, ---George On Sun, Dec 23, 2012 at 2:54 PM, Bastien wrote: > George Jones writes: > > > Should a git pull of development version of org pull the right patch? > > Yes. > > Simply ~$ git clone git://orgmo

Re: [O] remote execution in heterogeneous environment

2012-12-23 Thread George Jones
Should a git pull of development version of org pull the right patch? Thanks, ---george jones On Dec 23, 2012 11:47 AM, "Bastien" wrote: > Hi Michael, > > Michael Albinus writes: > > > <http://thread.gmane.org/gmane.emacs.orgmode/63586/focus=63709> > > &

Re: [O] remote execution in heterogeneous environment

2012-12-22 Thread George
d > > Could you, please, show the exact test case? And please apply the > workaround first (see my other email). Make everything works with: (setq temporary-file-directory "/tmp/") Thanks, ---George Jones

Re: [O] remote execution in heterogeneous environment

2012-12-22 Thread George
AME: hobbits | bilbo | frodo | #+name: executeOnLocalVM #+BEGIN_SRC sh :var foo=hobbits :dir /george@localhost#: :results output echo executed on `hostname` at `date`

Re: [O] remote execution in heterogeneous environment

2012-12-20 Thread George Jones
`hostname` at `date` echo two $foo #+END_SRC Similar procedure on a mac still yeilds: FYI/Thanks, ---George Jones Couldn't write region to `/scpc:g...@example.com:/var/folders/j6/j6w17khs3vl9s2_yg4rb5zsmgn/T/input-61683xyS', decode using `mimencode -u -b >%s' f\ ailed On

[O] org-agenda-timerange-leaders

2012-10-01 Thread George McNinch
uld have produced something like -- Week-agenda (W40): Monday 1 October 2012 W40 agenda: (1/3): foo Tuesday 2 October 2012 agenda: (2/3): foo Wednesday 3 October 2012 agenda: (3/3): foo -- -- ,--- | George McNinch | http://gmcninch.math.tufts.edu `---

[O] ELPA org-mode daily build(s)?

2012-09-14 Thread George McNinch
/ Probably not too big a deal, but it seems a bit confusing. best, gm -- ,--- | George McNinch | http://gmcninch.math.tufts.edu `---

Re: [O] Org Clock Timer in Frame Title bug

2012-04-30 Thread George Kettleborough
rrect form before we can append stuff to the end for display. global-mode-string, on the other hand, does seem to be of the right type by default: ("") Thanks, George.

  1   2   >