Re: [O] still seeing semi-regular lockups

2014-07-02 Thread Nicolas Goaziou
Hello, York Zhao gtdplatf...@gmail.com writes: Just suffered from extreme slowness. My Emacs had been running for about 1 hour and I was having two org-mode buffers, one file has 3800 lines, 168 KB bytes. And the other has 76,600 lines, 4,267,327 KB bytes. Both files had been opened for

[O] Multi-line links

2014-07-02 Thread Tobias Getzner
Dear org-mode list, It appears that multi-line links in org-mode will only work with if they span no more than two lines: http://comments.gmane.org/gmane.emacs.orgmode/19919 I was wondering if this hard-coded limit could be removed in future versions, also given the fact that the syntax spec. 

[O] oauth2.plstore secret when using google-contacts

2014-07-02 Thread Guido Van Hoecke
Hi, When using google-contacts it keeps nagging me for a plstore passphrase. As this is my personal computer which is not accessed by other persons, I'd like to define the passphrase in some initialisation file so that I'm lo longer bothered by a repeating request for this passphrase. Please

Re: [O] results from Python block not visible

2014-07-02 Thread Daniel Clemente
Since this org-babel + tramp-cache incompatibility is very puzzling, I continued researching it. The line that makes my Python block stop working (i.e. outputting None instead of the x I asked with print x') is this one, found in tramp-cache.el: (add-hook 'kill-buffer-hook

Re: [O] Installing from git

2014-07-02 Thread Achim Gratz
Vicente Vera writes: Thanks for your reply. Which one is the default install method? If it's 'make install', I'd go for make up2 (which ends up doing make install if the tests are passing) if you want minimum involvement, but it's your choice. do i need to tweak local.mk because of the

Re: [O] Installing from git

2014-07-02 Thread Miguel Ruiz
This is my setup in .emacs; it runs without problems version after version. You are encouraged to simplify the path schema of org-mode branches I use.Minimal sequence for me is: make clean git pull make autoloads make info;; .emacs begins activate debugging (setq debug-on-error t

[O] little elisp help?

2014-07-02 Thread tom
hi guys, I have this: (setq org-link-abbrev-alist '((foo . file:/path/to/%(myfun).txt))) I'm trying to have myfun replace any spaces in the tag with underscores, but I'm not having much luck. Would someone mind giving me a hint? Thanks.

Re: [O] Installing from git

2014-07-02 Thread Jorge A. Alfaro-Murillo
Vicente Vera vicente...@gmail.com writes: Hello. I'm quite confused with the installation options. Recently started out a Debian base system and compiled Emacs from the bzr repository. That came out fine, so I ran 'make install' and now Emacs 24.4.50 sits in /usr/local/bin, /usr/local/share,

Re: [O] little elisp help?

2014-07-02 Thread Thorsten Jolitz
tom scraw...@gmail.com writes: hi guys, I have this: (setq org-link-abbrev-alist '((foo . file:/path/to/%(myfun).txt))) I'm trying to have myfun replace any spaces in the tag with underscores, but I'm not having much luck. Would someone mind giving me a hint? #+begin_src emacs-lisp

Re: [O] Installing from git

2014-07-02 Thread Achim Gratz
Miguel Ruiz writes: Minimal sequence for me is: make clean git pull make autoloads make info You can simplify this to a just make by defining your own default target in local.mk like this: my_default_target: up0 uncompiled info (that's a tab after the colon). Regards, Achim. -- +[Q+

Re: [O] Installing from git

2014-07-02 Thread Achim Gratz
Jorge A. Alfaro-Murillo writes: For org, I once read a discussion in this list about not doing this but that a lot of people do it, it keeps working for me, so I keep doing it. It doesn't work, you just haven't run into a problem that you can positively identify with that habit yet. You'd need

Re: [O] Installing from git

2014-07-02 Thread Jorge A. Alfaro-Murillo
Achim Gratz strom...@nexgo.de writes: It doesn't work, you just haven't run into a problem that you can positively identify with that habit yet. You'd need to re-build Emacs each time you update Org if you wanted it to work. Why? emacs/lisp points to org-mode/lisp, if I update org it

Re: [O] little elisp help?

2014-07-02 Thread tom
this (setq org-link-abbrev-alist '((foo . file:/path/to/%s.txt))) allow me to do this [[foo:file to open]] but it creates a file with spaces in the name. so I'd like to replace %s with %(myfun). with your example, how can I get foo bar loo from [[foo:foo bar loo]] see what I mean?

Re: [O] Pushing and pulling to google calendar

2014-07-02 Thread Fabrice Popineau
Am I missing something if I cite https://github.com/myuhe/org-gcal.el which is using the v3 Google Calendar api. Still lacks of true bidirectional sync, but that could happen. Seems nicely written. Fabrice 2014-06-30 21:29 GMT+02:00 David Engster d...@randomsample.de: Marvin M. Doyley writes:

Re: [O] little elisp help?

2014-07-02 Thread Eric Abrahamsen
tom scraw...@gmail.com writes: hi guys, I have this: (setq org-link-abbrev-alist '((foo . file:/path/to/%(myfun).txt))) I'm trying to have myfun replace any spaces in the tag with underscores, but I'm not having much luck. Would someone mind giving me a hint? Thanks. You might

Re: [O] still seeing semi-regular lockups

2014-07-02 Thread York Zhao
OK. If you experience it again, please do M-x org-element-cache-reset in the slow buffer and see if it is responsive again. Another interesting test would be to try reproducing the problem with `org-element-use-cache' set to nil. The exact same slowness problem happened just now. M-x

Re: [O] Installing from git

2014-07-02 Thread Vicente Vera
Thank you for your replies, I think i'm beginning to understand the process. These are the changes I made to local.mk: prefix = /usr/local/share datadir = /usr/local/share/emacs/24.4.50/etc/org (actually, this directory belongs to the built-in Org installation) Then: $ make $ sudo make install