Re: [O] Pushing and pulling to google calendar

2014-06-29 Thread Jorge A. Alfaro-Murillo
Parnell Springmeyer parn...@ixmat.us writes: MobileOrg is the best solution so far. But there's no bi-directionality, which is annoying, the sync options in MobileOrg are pretty solid but getting MobileOrg first setup was enormously confusing for me. I've used dropbox and btsync to sync and

Re: [O] org-agenda-files and customize

2014-06-29 Thread Jorge A. Alfaro-Murillo
David Masterson dsmaster...@gmail.com writes: 2. I removed org-agenda-files from the custom-set-variables section of my .emacs. 3. I set org-agenda-files in the standard way (C-c [). 4. I notices that org-agenda-files was back in the custom-set-variables section of my .emacs. Is that

Re: [O] org-ref in action

2014-06-26 Thread Jorge A. Alfaro-Murillo
Grant Rettke g...@wisdomandwonder.com writes: How do people choose today? Why choose bibtex over biblatex? For journal submission. With BibTeX you only have to copy paste at the end of your LaTeX file the contents of the generated .bbl file. Moreover, journals provide a default style for

Re: [O] Alternative to arrow keys (more ergonomic)?

2014-06-13 Thread Jorge A. Alfaro-Murillo
Martin Beck elwood...@web.de writes: Sorry, if it may be obvious, but how do I remap CapsLock to H (Hyper)? p.s. I tried ;; remap CapsLock Key to Hyper Key ;;source: http://ergoemacs.org/emacs/emacs_hyper_super_keys.html , http://emacs-fu.blogspot.de/2008/12/remapping-caps-lock.html (setq

Re: [O] Alternative to arrow keys (more ergonomic)?

2014-06-12 Thread Jorge A. Alfaro-Murillo
Hi Martin, Martin Beck elwood...@web.de writes: I'm using Shift+RightArrow and Shift+LeftArrow quite often to change the scheduled or deadline dates of a task in my agenda view. As I have a normal large keyboard (where the arrow keys are between the alphanumeric block and the numeric keypad

Re: [O] Alternative to arrow keys (more ergonomic)?

2014-06-12 Thread Jorge A. Alfaro-Murillo
Thorsten Jolitz tjol...@gmail.com writes: Just out of curiosity - did you try this on the console (without X) too? Xmodmap does not work without X, at least I suppose that is what the X stands for =) If someone knows how to remap outside of X please let me know. Since I use emacs not in X in

Re: [O] (require 'org-publish) causes downgrade in org-version

2014-06-09 Thread Jorge A. Alfaro-Murillo
psycho_punch psychopunc...@gmail.com writes: So I need to explicitly call (package-initialize) in init.el, probably one of the, if not the, first line? Yes, I had a similar issue with different versions from ELPA, and applying (package-initialize) early (first line in my .emacs) fixed.

Re: [O] babel setup

2014-06-09 Thread Jorge A. Alfaro-Murillo
Shiyuan gshy2...@gmail.com writes: Hi all, I am using Emacs 24.3.9 + org-mode 8.2.6(from ELPA) I followed this instruction http://orgmode.org/worg/org-contrib/babel/languages.html#configure and added the following to my .emacs file. (org-babel-do-load-languages

Re: [O] Repeat work / week days

2014-06-09 Thread Jorge A. Alfaro-Murillo
Hi SabreWolfy, SabreWolfy sabrewo...@gmail.com writes: I searched here and elsewhere, and then played with various diary sexp settings, but I could not find a way to repeat an entry on work/week days (Monday to Friday) every week. I would like a task to appear on all Mondays to Fridays. You

Re: [O] Repeat work / week days

2014-06-09 Thread Jorge A. Alfaro-Murillo
Nicolas Goaziou m...@nicolasgoaziou.fr writes: This is not valid syntax. A given headline cannot have more than one SCHEDULED entry attached to it. Even if it works (I didn't test), I wouldn't count on it: this is a bug. I guess if you do not plan to do start working on the task you should

Re: [O] Repeat work / week days

2014-06-09 Thread Jorge A. Alfaro-Murillo
Nicolas Goaziou m...@nicolasgoaziou.fr writes: It is probably because you don't need it. Syntax wise, SCHEDULED, DEADLINE and CLOSED can only appear once, on the line right after the related headline. There is no limitation to the number of plain timestamps under a headline. Thanks for the

Re: [O] When is the right time to modify the contents of org-structure-template-alist?

2014-06-09 Thread Jorge A. Alfaro-Murillo
Grant Rettke g...@wisdomandwonder.com writes: Hi, Wanting to modify the contents of org-structure-template-alist I had this code run at startup after org was required: (mapc (lambda (asc) (let ((org-sce-dc (downcase (nth 1 asc (setf (nth 1 asc) org-sce-dc)))

Re: [O] latex equations and $ sign

2014-06-06 Thread Jorge A. Alfaro-Murillo
Federico Beffa be...@ieee.org writes: Hi, I would like to have a mathematical equation typeset in latex and automatically generated by sympy, embedded in an equation environment: #+NAME: mass-energy #+BEGIN_SRC python :results raw :exports results :wrap EQUATION import sympy as sp E, m,

Re: [O] An org password manager

2014-06-02 Thread Jorge A. Alfaro-Murillo
Bastien b...@gnu.org writes: This is now in contrib/lisp/ - thanks! Great! Thanks a lot.

Re: [O] An org password manager

2014-05-31 Thread Jorge A. Alfaro-Murillo
-passwords.el --- org derived mode for managing passwords + +;; Author: Jorge A. Alfaro-Murillo jorge.alfaro-muri...@yale.edu +;; Created: December 26, 2012 +;; Keywords: passwords, password + +;; This file is NOT part of GNU Emacs. +;; +;; This program is free software: you can redistribute

Re: [O] org-edit-src-code outside of org

2014-05-17 Thread Jorge A. Alfaro-Murillo
I figure it out, I am updating the variable that causes problems and it is working very well so in case you want to use org-edit-src-code in Message mode all is needed is: #+BEGIN_SRC emacs-lisp (eval-after-load message '(progn (define-key message-mode-map (kbd tab) (lambda

Re: [O] An org password manager

2014-05-13 Thread Jorge A. Alfaro-Murillo
Dear Ramon and Colin, If you are using an (add-to-list 'auto-mode-alist ...) for the gpg files, that sets the major mode on. If you want to leave the major mode as Org, do not use auto-mode-alist, but instead use a hook: (add-hook 'org-mode-hook 'your-function), where your-function should be one

[O] org-edit-src-code outside of org

2014-05-13 Thread Jorge A. Alfaro-Murillo
Hi, I would like to use org-edit-src-code outside of org, I think it would be very handy in Message mode, to send messages that contain code and edit that code in the proper mode. I put something like this #+BEGIN_SRC emacs-lisp (defun mm-org-try-structure-completion ()

Re: [O] org-edit-src-code outside of org

2014-05-13 Thread Jorge A. Alfaro-Murillo
Thanks Ken, I wonder if there is already something like that in Message mode. I like gnus a lot, so I do not think that I am going to change to mu4e just for that =)

Re: [O] An org password manager

2014-05-11 Thread Jorge A. Alfaro-Murillo
Thanks Ramon, Regarding your question, probably the bug is related to running a for with all the buffers that are open. To get what you want you can try something creating a minor mode for gpg files and adding a hook that adds the buffer name of the gpg file that you open to a list of buffers to

Re: [O] An org password manager

2014-05-11 Thread Jorge A. Alfaro-Murillo
jorge.a.alf...@gmail.com (Jorge A. Alfaro-Murillo) writes: I forgot to mention that what org-passwords.el does is to set a timer each time that the password file is opened (analogous to the second option in my previous message) rather than having just one timer with repeat. Jorge. Thanks Ramon

[O] An org password manager

2014-05-10 Thread Jorge A. Alfaro-Murillo
Hi! I have been using org for managing passwords for a some time now. In case someone is interested, the code is in: https://bitbucket.org/alfaromurillo/org-passwords.el To consult the database, the code provides a function to open the Org file with the passwords in Read-Only mode, sets a timer

Re: [O] .emacs (init.el) on Dropbox: Ho to access it?

2014-04-11 Thread Jorge A. Alfaro Murillo
On 1/18/14, 1:44 PM, Renato wrote: Hi, I use org mode on two pc: - windows (from work) - Debian (at home) How can have just one .emacs/init.el file? I would store the file on a Dropbox folder that I access from both devices. I have several machines and just one .emacs file in Dropbox. I

Re: [O] managing articles in my personal library, and their citational material, using org mode instead of bibtex

2013-11-20 Thread Jorge A. Alfaro Murillo
I once tried to do something similar in org mode, at the end I thought I was doing twice the work, so I ended up with just one big .bib file. I copy the bib info from the website and then I have a function to yank it a little bit cleaner into my bib file, something like this: (defun

Re: [O] Agenda in MobileOrg for Android

2013-04-09 Thread Jorge A. Alfaro Murillo
I think entries of the form %%(org-class 2013 1 7 2013 4 27 2) 12:00pm-01:15pm TITLE show up on MobileOrg. I have org-mobile-agendas set up to 'default and they do for me. Also the synchronization with Google Calendar is quite good in Android, you can let then Google Calendar handles the

Re: [O] org-mobile-push fails

2012-10-25 Thread Jorge A. Alfaro Murillo
, Jorge A. Alfaro Murillo jorge.a.alf...@gmail.com writes: This is strange, since I get the whole emacs from a repository (http://emacs.naquadah.org/ unstable/ ). I should not have to compile anything. I double-checked and the source on Julien's server are okay. Can you do C-h f org

Re: [O] org-mobile-push fails

2012-10-24 Thread Jorge A. Alfaro Murillo
:35 AM, Bastien b...@altern.org wrote: Hi Jorge, Jorge A. Alfaro Murillo jorge.a.alf...@gmail.com writes: Hi, I am having trouble with org-mobile-push, it fails and gives the following error: org-mobile-create-index-file: Symbol's function definition is void: org-prepare-agenda-buffers

<    1   2