Re: [O] evil-mode and org

2017-03-30 Thread Eric S Fraga
On Thursday, 30 Mar 2017 at 10:14, Guido Van Hoecke wrote: > Eric, > > Care to share your org-evil mappings? sure: #+begin_src emacs-lisp (defun esf/evil-key-bindings-for-org () ;;(message "Defining evil key bindings for org") (when (fboundp 'evil-declare-key) ;; normal, motion

[O] Reporting org-babel bug for java

2017-03-30 Thread santorini lysias
Hello, I've never used a mailing list before, so bear with me if I'm not "doing this right." I found behavior that I think is a bug and not a feature. This is for org-babel Java. The content below the equals signs, below, comprise an org-mode file that I will refer to in order to report the

Re: [O] Bug: org-goto not work with ido completion [9.0.5 (9.0.5-elpa @ /Users/lluvio/.emacs.d/elpa/org-20170210/)]

2017-03-30 Thread Marco Wahl
Mr Lluvio writes: > 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 > > http://orgmode.org/manual/Feedback.html#Feedback > > Your bug report will be posted to the Org

Re: [O] How can footnotes be exported at the end of an artile in latex?

2017-03-30 Thread Eric S Fraga
On Wednesday, 29 Mar 2017 at 15:16, Nick Dokos wrote: > mgcyung writes: [...] > They are then called "endnotes". You might want to google for that. > And it might be as simple as > > #+LATEX_HEADER: \usepackage{endnotes} You'll need to add #+latex_header:

Re: [O] Table formula references

2017-03-30 Thread Eric S Fraga
I thought the following would work but org seems to reorder the vector: | t | y_t | 0.9^t | y_{t+1} | |---+-++-| | 1 | 115 |0.9 | 0.9 | | 2 | 121 | 0.81 |2.52 | | 3 | 118 | 0.729 | 4.707 | | 4 | 127 | 0.6561 | 7.3314 | #+TBLFM:

[O] Bug: org-indent-mode with visual-line-mode breaks C-a and C-e

2017-03-30 Thread Thibault Polge
* Summary With visual-line-mode and org-indent-mode activated, C-a and C-e misbehaves on indented text blocks. C-a and C-e sometimes start jumping over lines (ie, go backwards or forward one extra line) and sometimes even reverses direction (C-e goes backward). I can reproduce this from emacs

[O] Using org-export-get-reference for strings

2017-03-30 Thread Mark Meyer
Hi list, In ox-epub I'm using several references to external stylesheets, starting with the external name in the user filesystem I transform these into a kind-of unique id that lives in the EPUB zip file. Currently I'm doing this using a counter, generating zip entries in the form of style-1.css.

Re: [O] evil-mode and org

2017-03-30 Thread Guido Van Hoecke
Eric, You already mentioned your mappings in http://lists.gnu.org/archive/html/emacs-orgmode/2012-05/msg00153.html Thanks! Finally got myself to write a little lisp to solve my problem and mapped it to go For what it's worth, here it is (but it solves a very specific problem): (defun

Re: [O] [PATCH] ob-sql: Add vertica engine

2017-03-30 Thread Andreas Gerler
Hi Nicolas, actually I send my request to FSF after sending the patch. So I guess it's easier to ignore the patch until I finished signing the papers. I have another change sitting currently in my config. So long Andy > On 30. Mar 2017, at 12:44 PM, Nicolas Goaziou

Re: [O] [BUG] org-link-search fails if search string contains new lines

2017-03-30 Thread Nicolas Goaziou
Hello, Skip Collins writes: > Test test-org/fuzzy-links backtrace: > (if (unwind-protect (setq value-10839 (let ((file (make-temp-file "o > (let (form-description-10840) (if (unwind-protect (setq value-10839 > (let ((value-10839 (cl-gensym

Re: [O] Bug: startup latexpreview [9.0.5 (9.0.5-elpa @ /gnu/store/...-emacs-org-20170210/share/emacs/site-lisp/guix.d/org-20170210/)]

2017-03-30 Thread Nicolas Goaziou
Hello, Diego Nicola Barbato writes: > Hello, > > When opening an org-file in emacs which contains the in-buffer setting > > "#+STARTUP: latexpreview" > > the minibuffer displays > > "Creating images for section...done" > > instead of

Re: [O] [PATCH] ob-sql: Add vertica engine

2017-03-30 Thread Nicolas Goaziou
Hello, Andreas Gerler writes: > * lisp/ob-sql.el (org-babel-sql-dbstring-vertica): New function. > (org-babel-execute:sql): Add `vertica' engine. Thank you. If you haven't signed FSF papers yet, could you add TINYCHANGE at the end of the commit message? Also,

Re: [O] evil-mode and org

2017-03-30 Thread Guido Van Hoecke
Eric, Care to share your org-evil mappings? One 'conflict' which bites me every time is this: I hit /blabla to locate a heading directly under which I want to insert a text line. I then hit enter to acknowledge the find. The display shows the heading line followed by its body lines (which all

Re: [O] evil-mode and org

2017-03-30 Thread Eric S Fraga
On Tuesday, 28 Mar 2017 at 12:57, Matt Price wrote: > I've never used Vim but I see a lot of people online raving about evil > mode and how much they love it. I'm considering giving it a whirl > after the semester ends & I get some free time. I just wondered > whether any heavy org users here on

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

2017-03-30 Thread Nicolas Goaziou
Hello, Kaushal Modi writes: > Here is my implementation.. it is still not baked into org.el, etc and > provided as a complete patch; I have some questions.. Thank you. > (defvar org-setupfile-ht (make-hash-table :test 'equal) org-setupfile-ht -> org--setupfile-cache

Re: [O] Have SRC_BLOCK :padline accept numbers

2017-03-30 Thread Nicolas Goaziou
Hello, Daniel P Gomez writes: > I've amended the commit including the changes you've mentioned. Thank you. > I did not change the following, though: > > (numberp (string-to-int padlines)) -> (string-match-p "\\`[0-9]+\\'" padlines) > > because that changed the behaviour

[O] Table formula references

2017-03-30 Thread Manuel Schneckenreither
Hi, I'd like to use following formula on like this: | t | y_t | y_{t+1} | |---+-+-| | 1 | 115 | | | 2 | 121 | | | 3 | 118 | | | 4 | 127 | | $4 = \sum_{\tau=0}^{@#-2}{0.9^{\tau} * y_{@#-2-\tau}} So that's a simple sum, which just

[O] Table formula references

2017-03-30 Thread Manuel Schneckenreither
Hi, I'd like to use following formula on like this: | t | y_t | y_{t+1} | |---+-+-| | 1 | 115 | | | 2 | 121 | | | 3 | 118 | | | 4 | 127 | | $4 = \sum_{\tau=0}^{@#-2}{0.9^{\tau} * y_{@#-2-\tau}} So that's a simple sum, which just

Re: [O] evil-mode and org

2017-03-30 Thread Eric S Fraga
On Tuesday, 28 Mar 2017 at 13:23, Peter Neilson wrote: > You will also find people asking why anyone would ever think of using > vim. [...] > Why use vim if emacs is already built into your fingertips? I don't think the OP was intending on using vim (although nothing wrong with that in any case