Re: [O] How to use org-protocol with text that includes &?

2018-08-30 Thread Marcin Borkowski
e foobar2 doesn't get captured because of the &. Escaping it doesn't > seem to help. > > How should I format text that includes & so that it gets properly captured? Would url-encoding help? Hth, -- Marcin Borkowski http://mbork.pl

[O] How to get clock data for today?

2018-08-28 Thread Marcin Borkowski
Hi Orgers, I'd like to be able to get all clock data for a given period, say today, from a given file(s) (like what `org-agenda-log-mode' does). And I'd like to have it in an Elisp program, so ideally as some data structure. Any hints? -- Marcin Borkowski http://mbork.pl

Re: [O] How to font-lock diffs?

2018-08-23 Thread Marcin Borkowski
On 2018-08-22, at 14:52, Nick Dokos wrote: > Marcin Borkowski writes: > >> Hi all, >> >> I hoped this: >> >> #+begin_src diff >> @@ -1,5 +1,5 @@ >> -lorem >> +Lorem >>ipsum >>dolor >>sit >> -amet

[O] How to font-lock diffs?

2018-08-22 Thread Marcin Borkowski
Hi all, I hoped this: #+begin_src diff @@ -1,5 +1,5 @@ -lorem +Lorem ipsum dolor sit -amet +amet. #+end_src would Just Work™, i.e., the diff would be font-locked like in diff-mode. Well, it is not. How do I convince Org-mode to color my diffs? Best, -- Marcin Borkowski

[O] org-ctrl-k-protect-subtree stopped working

2018-06-20 Thread Marcin Borkowski
Hi all, I have (setq org-ctrl-k-protect-subtree t) in my init.el. After an upgrade from an ancient version, Org stopped asking me whether to kill a subtree. Org mode version 9.1.13 (release_9.1.13-791-g842002) Is it a bug? -- Marcin Borkowski http://mbork.pl

[O] Is it possible for the archive file to mirror the structure of the original file?

2018-06-17 Thread Marcin Borkowski
) in the archive file. Is that possible? The docstring of org-archive-location suggests not. I could set up the ARCHIVE property for various headlines individually, but I'm more interested in an automated solution. TIA, -- Marcin Borkowski http://mbork.pl

Re: [O] Org agenda started behaving badly

2018-06-14 Thread Marcin Borkowski
On 2018-06-11, at 21:06, Nick Dokos wrote: > Marcin Borkowski writes: > >> Hi all, >> >> so out of nowhere my org agenda started behaving in a strange way. It >> seems not to respect my TODO-keywords settings: >> >> (setq org-todo-keywor

[O] Org agenda started behaving badly

2018-06-08 Thread Marcin Borkowski
ea what might cause this, or how I could try to debug this problem? Of course, I have a lot of Org-mode-related customizations in my init.el, but I don't think they are related. If I'm wrong, I can post them here, of course. Best, -- Marcin Borkowski http://mbork.pl

Re: [O] Suggestion: Add zero-width nbsp to emphasis-regexp-components

2018-06-06 Thread Marcin Borkowski
On 2018-06-06, at 14:07, Nicolas Goaziou wrote: > This is already the case. > > PRE and POST parts of `org-emphasis-regexp-components' contain > "[:space:]", which matches zero width space. Wow, thanks! That means I really need to upgrade my Org. Best, -- Marcin Borkowski http://mbork.pl

Re: [O] Suggestion: Add zero-width nbsp to emphasis-regexp-components

2018-06-06 Thread Marcin Borkowski
emphasis on only part of a word.) > > * Suggested Solution > > Include the Unicode zero width no-break space character (U+feff) in > both ~pre~ and ~post~ sections of ~org-emphasis-regexp-components~. +1 -- Marcin Borkowski http://mbork.pl

Re: [O] General advice beyond Org

2018-05-19 Thread Marcin Borkowski
ftware" mantra, in fact, I feel some distance to the FSF ideals.) Best, -- Marcin Borkowski http://mbork.pl

Re: [O] General advice beyond Org

2018-05-19 Thread Marcin Borkowski
ing the following: Or use latexdiff (in case of LaTeX). Hth, -- Marcin Borkowski http://mbork.pl

Re: [O] [OT] org-mode bindings in markdown-mode?

2018-04-13 Thread Marcin Borkowski
n org->md transformation could help. (I haven't yet used lentic, so I might be competely wrong.) I'm CC'ing Phillip, who is the right person to comment on this idea. Best, -- Marcin Borkowski http://mbork.pl

Re: [O] Creating mu4e-like screens for org-mode

2018-03-19 Thread Marcin Borkowski
g-mode_hydra I might need a similar thing (a menu-driven application on top of Emacs), so I might be tempted to write a blog post about such a thing. Would you be interested? I'm wondering what Org-mode features are you going to interfce to this way. Hth, -- Marcin Borkowski http://mbork.pl

Re: [O] org-get-heading, but without the count/percentage cookies

2018-02-14 Thread Marcin Borkowski
On 2018-02-14, at 14:36, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Marcin Borkowski <mb...@mbork.pl> writes: > >> Is it possible to get the text of the Org heading, but without the [n/m] >> cookie (or its percentage equivalent)? &

Re: [O] org-get-heading, but without the count/percentage cookies

2018-02-14 Thread Marcin Borkowski
On 2018-02-14, at 14:22, Kaushal Modi <kaushal.m...@gmail.com> wrote: > On Wed, Feb 14, 2018, 6:42 AM Marcin Borkowski <mb...@mbork.pl> wrote: > >> Hi list, >> >> Is it possible to get the text of the Org heading, but without the [n/m] >> cookie

[O] org-get-heading, but without the count/percentage cookies

2018-02-14 Thread Marcin Borkowski
Hi list, Is it possible to get the text of the Org heading, but without the [n/m] cookie (or its percentage equivalent)? Or should I just massage the result of org-get-heading myself? If the latter, isn't it a bug? (I have a use-case where this is /really/ necessary.) TIA, -- Marcin

Re: [O] How to dynamically change org-clock-mode-line-total?

2018-02-01 Thread Marcin Borkowski
On 2018-01-26, at 19:41, Nick Dokos <ndo...@gmail.com> wrote: > Marcin Borkowski <mb...@mbork.pl> writes: > >> Hi all, >> >> I want to be able to dynamically switch between various settings of >> org-clock-mode-line-total. To this end, I wrote the follo

[O] How to dynamically change org-clock-mode-line-total?

2018-01-26 Thread Marcin Borkowski
--end--->8--- Unfortunately, it doesn't work. I checked that the variable org-clock-mode-line-total is modified correctly, but even after saying (org-clock-update-mode-line), nothing gets updated. Am I doing something wrong? TIA, -- Marcin Borkowski

Re: [O] Is there a way to get all agenda TODOs programmatically?

2018-01-03 Thread Marcin Borkowski
On 2018-01-01, at 00:37, Adam Porter <a...@alphapapa.net> wrote: > Marcin Borkowski <mb...@mbork.pl> writes: > >> Thanks again. I played around with this for some time, but there is one >> problem. The agenda has a lot of settings, and replicating them with

Re: [O] New feature? Remove duplicate subheadings, preserving order

2017-12-31 Thread Marcin Borkowski
On 2018-01-01, at 03:42, Allen Li <vianchielfa...@gmail.com> wrote: > I wrote a command to remove duplicate subheadings, which I use to > remove duplicate captured links among other things. Would this be a > useful addition to Org mode? IMHO yes. -- Marcin Borkowski

Re: [O] Is there a way to get all agenda TODOs programmatically?

2017-12-29 Thread Marcin Borkowski
ntries turned out to be no fun. Is there a way to plug into the agenda generating functions somehow to get a Lisp list of agenda items? I'm pretty sure that can be done - org-super-agenda does something similar, after all - but I have no idea why. I could delve into agenda source myself, but is is quite hairy, so maybe someone knows that already? TIA, -- Marcin Borkowski

Re: [O] [RFC] Official Org manual in Org! (Was: Dog food, anyone?)

2017-12-21 Thread Marcin Borkowski
"make info" should export > "manual.org" to "org.texi". First, however, it would be nice to review > it, either as an Org file, or within the Info viewer, with > >(require 'ox-texinfo) > > and > >`C-c C-e i o' from "manual.org". > > Note that Info output is expected to be sometimes different from the > current manual. This is not a 1:1 conversion. > > Feedback welcome! > > > Regards, > > -- > Nicolas Goaziou0x80A93738 -- Marcin Borkowski

Re: [O] One org file to multiple pages static website.

2017-10-24 Thread Marcin Borkowski
lop an Org exporter that exports one-to-many > style for Hugo static site generator. I released in back in September this > year: https://ox-hugo.scripter.co/ (Source code: > https://github.com/kaushalmodi/ox-hugo/ ). Best, -- Marcin Borkowski

Re: [O] Leslie Lamport has a foot in the 21st century

2017-10-24 Thread Marcin Borkowski
. Well, one might think that after about 20 years, LaTeX 2.09 should be already dead. It's not. Academia has a lot of inertia. So we're probably stuck with LaTeX2e (for better or for worse) for at least several decades. Best, -- Marcin Borkowski

Re: [O] One org file to multiple pages static website.

2017-10-24 Thread Marcin Borkowski
think maybe others may > find this helpful. > > https://github.com/phfrohring/org-to-blog > > Cheers! FWIW, I did something similar some time ago: https://github.com/mbork/org-one-to-many Best, -- Marcin Borkowski

Re: [O] OT: TUI applications

2017-10-20 Thread Marcin Borkowski
ith it. See e.g. http://mbork.pl/2015-11-21_The_Emacs_widget_library_and_automatic_modification_of_editing_fields Hth, -- Marcin Borkowski

Re: [O] Is there a way to get all agenda TODOs programmatically?

2017-10-07 Thread Marcin Borkowski
On 2017-10-07, at 16:20, Matt Lundin <m...@imapmail.org> wrote: > Hi Marcin, > > Marcin Borkowski <mb...@mbork.pl> writes: > >> I'd like to get a list of all agenda TODOs, with titles and due dates. >> Is there something ready in Org/contrib/blogospher

[O] Is there a way to get all agenda TODOs programmatically?

2017-10-06 Thread Marcin Borkowski
;, or even better, such a sum weighted by the time after the deadline, or something similar. Best -- Marcin Borkowski

Re: [O] [RFC] New "kbd" macro?

2017-09-13 Thread Marcin Borkowski
e portable across >> export back-ends. > > For HTML too! :) Don't forget about LaTeX!!! It could use the menukeys package (https://ctan.org/pkg/menukeys). I could actually add some code to support that, do you want me to start working on it? Thanks a lot, -- Marcin Borkowski

Re: [O] [RFC] Remove Org Struct mode

2017-08-22 Thread Marcin Borkowski
ave no issue with > org-struct-mode being phased out. Out of curiosity: did anyone consider using lentic (https://github.com/phillord/lentic) for that? Best, -- Marcin Borkowski

[O] Firefox extension "Org-capture" stopped working after update

2017-08-16 Thread Marcin Borkowski
Hi all, the title text says it all. Anybody can confirm that? How to configure capture in FF now? TIA, -- Marcin Borkowski

[O] How to launch an agenda view programmatically?

2017-07-19 Thread Marcin Borkowski
org-agenda-skip-function #'mbork/org-agenda-skip-if-parent-done-or-noagenda))) (tags "+project-TODO=\"DONE\"") --8<---cut here---end--->8--- Now instead of pressing C-c a n, I want to be able to launch my custom agenda command from Lisp. How do I do that? TIA, -- Marcin Borkowski

Re: [O] How to get rid of first line indent?

2017-06-12 Thread Marcin Borkowski
Lisp to master Emacs. Start with "An Introduction to Programming in Emacs Lisp" by Robert J. Chassell (evaluate the form (info "eintr")). Best, -- Marcin Borkowski

Re: [O] How to get rid of first line indent?

2017-06-12 Thread Marcin Borkowski
e easiest and fastest solution is in fact deleting the leading > whitespace in every line by replace-regexp (replace ^ + by nothing). The easiest and fastest solution is probably to use delete-rectangle (or rectangle-mark-mode and then DEL). Hth, -- Marcin Borkowski

Re: [O] Overriding org-html-headline or other export functions?

2017-05-29 Thread Marcin Borkowski
exactly what you want, since you seem to need to modify just one of the exporter functions. Hth, -- Marcin Borkowski

[O] [ANN] org-toggl

2017-05-28 Thread Marcin Borkowski
if someone wants to do something about them. Best, -- Marcin Borkowski

Re: [O] Git repository error

2017-05-26 Thread Marcin Borkowski
On 2017-05-26, at 14:08, Charles Millar <mill...@verizon.net> wrote: > HI, > >>> On 26/05/17 01:10, Vicente Vera wrote: >>>> >>>> fatal: read error: Connection reset by peer >>> > Same here - since yesterday morning. Me too. -- Marcin Borkowski

[O] How to call a source code block from another one

2017-03-08 Thread Marcin Borkowski
cks? Best, -- Marcin Borkowski

Re: [O] What are you doing ? -- autoclocking

2017-03-02 Thread Marcin Borkowski
Each N seconds, Emacs records the buffer name and mode we're in, also current X window class and name, and the current idle time. I didn't actually finish that, though. Extending/rewriting it to use clocking as you suggest shouldn't be too difficult. Best, -- Marcin Borkowski

Re: [O] backporting changes to exported results for collaborative editing

2017-02-06 Thread Marcin Borkowski
's edits, then diff generating a patch, then some tool existing only in my dreams currently that converts the md patch to an org patch, and then apply that patch to the original org? For small enough changes, that could actually work, no? Best, -- Marcin Borkowski

Re: [O] Price/ list comparison

2017-02-01 Thread Marcin Borkowski
g) might help there, too. > Thanks in advance. > > NOTE: Since i don't know what name this kind of software receives i have > not been able to find what i look for, so excuse my ignorance Hth, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics

Re: [O] startup with 2 levels of headings shown?

2017-01-29 Thread Marcin Borkowski
tting would be > possible. > > eric > > Footnotes: > [1] I am not sure if confirmation of eval statements can be turned off > but I wouldn't want to do so generally in any case. How about checking out `safe-local-eval-forms'? Hth, -- Marcin Borkowski

Re: [O] show only top level TODO in agenda and ignore sub level TODOS in agenda?

2016-12-27 Thread Marcin Borkowski
ieve this? > > I don't know but I can suggest using checkboxes for this? > info:(org) Checkboxes > They work well and are appropriate for when you have sub-tasks for a > single task. How about (setq org-agenda-todo-list-sublevels nil) ? Hth, -- Marcin Borkowski

Re: [O] Funny bug with org-get-heading

2016-12-05 Thread Marcin Borkowski
e it doesn't persist. > Carsten Best, -- Marcin Borkowski

[O] Funny bug with org-get-heading

2016-12-05 Thread Marcin Borkowski
hould only strip "TODO"). It seems that a (let ((case-fold-search nil)) ...) is missing somewhere (manually setting case-fold-search to nil made org-get-heading behave properly). BTW, I discovered it when clocking an Org task about cleaning up my Org tasks. How meta! ;-) Best, -- Marcin Borkowski

Re: [O] html-email in org-mode

2016-10-30 Thread Marcin Borkowski
o get messed up. +20! (that is, +243290200817664) I'm not very interested in sending HTML emails, but this would be AWESOME. I sometimes send ASCII-art-ish tables (like Org-mode ones, or Ledger reports) by email, and opening them in variable-width font is rather messy indeed. TIA, -- Marcin Borkowski

Re: [O] Leslie Lamport has a foot in the 21st century

2016-10-09 Thread Marcin Borkowski
how part; HTML+JS might be better suited to that indeed. I guess that using ConTeXt would a better route here. Just my 2 cents. Best, -- Marcin Borkowski

Re: [O] Making DocBook xml books from org mode?

2016-10-02 Thread Marcin Borkowski
ackspace? Best, -- Marcin Borkowski

Re: [O] Making DocBook xml books from org mode?

2016-09-30 Thread Marcin Borkowski
/ docbook xml into org mode? XSLT? > Thank you very much. > > -pd Hth, -- Marcin Borkowski

Re: [O] Emacs movement keys

2016-08-28 Thread Marcin Borkowski
cs user when... you try to get to the beginning of line and find yourself selecting everything and losing the positition in a large file. Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] Tuning the layout of published html

2016-07-19 Thread Marcin Borkowski
nd" feature to modify just the page template. You'd probably have to look at the `org-html-template' function and write your version of it. > Jarmo Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] lists in tables (latex export)

2016-05-24 Thread Marcin Borkowski
t; Are there any plans for the future concerning such a feature? > > I don't think so. Supporting lists in tables equals to rewrite > org-table.el from scratch. Wouldn't it be doable (or rather: hackable) using filters? > Regards, Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marci

Re: [O] latex newcommand in org

2016-05-21 Thread Marcin Borkowski
terend} > > Excellent and the modification makes sense for your use case. You might also want to say \newenvironment{response}{\unskip\color{red}\ignorespaces}{\unskip\ignorespacesafterend} (not tested). Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathe

Re: [O] latex newcommand in org

2016-05-20 Thread Marcin Borkowski
h commands.) See also http://tex.stackexchange.com/questions/102141/what-are-the-consideration-when-choosing-either-newcommand-or-newenvironment Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] speed keys for plain lists?

2016-05-09 Thread Marcin Borkowski
/new function/maybe some hook) might depend on the particular choice of the keys. Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] Clocking work time vs. office time

2016-05-02 Thread Marcin Borkowski
On 2016-04-29, at 16:51, Brett Viren <b...@bnl.gov> wrote: > Marcin Borkowski <mb...@mbork.pl> writes: > >> On 2016-04-29, at 11:21, Michael Welle <mwe012...@gmx.net> wrote: >> >>> Marcin Borkowski <mb...@mbork.pl> writes: >>>

Re: [O] Fwd: bug#23299: 25.1.50; org-timestamp-change: Invalid time zone specification: (nil nil nil)

2016-05-01 Thread Marcin Borkowski
On 2016-05-01, at 09:56, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Marcin Borkowski <mb...@mbork.pl> writes: > >> it seems that this is not yet applied to master (or am I mistaken?). >> If I'm correct, could someone apply this patch in t

[O] Fwd: bug#23299: 25.1.50; org-timestamp-change: Invalid time zone specification: (nil nil nil)

2016-05-01 Thread Marcin Borkowski
in org.el > that > was exposed by recent changes to encode-time. I installed into master the > attached patch, which I think fixes the bug. Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewic

Re: [O] Clocking work time vs. office time

2016-04-30 Thread Marcin Borkowski
On 2016-04-30, at 06:34, Michael Welle <mwe012...@gmx.net> wrote: > Hello, > > Marcin Borkowski <mb...@mbork.pl> writes: > [...] >> Now that I think of it, I guess it might be better/easier to check the >> network SSID. Thanks for the idea! > that would wo

Re: [O] Clocking work time vs. office time

2016-04-29 Thread Marcin Borkowski
On 2016-04-29, at 17:13, Stefan Nobis <stefan...@snobis.de> wrote: > Marcin Borkowski <mb...@mbork.pl> writes: > >> No, you're not - this is one possible solution. I'm curious about other >> ones. > > If tracking the time you're at a specific location is y

Re: [O] Clocking work time vs. office time

2016-04-29 Thread Marcin Borkowski
On 2016-04-29, at 20:10, Michael Welle <mwe012...@gmx.net> wrote: > Hello, > > Marcin Borkowski <mb...@mbork.pl> writes: > >> On 2016-04-29, at 11:21, Michael Welle <mwe012...@gmx.net> wrote: >> >>> Hello, >>> >>> Marcin Borko

Re: [O] Clocking work time vs. office time

2016-04-29 Thread Marcin Borkowski
On 2016-04-29, at 11:21, Michael Welle <mwe012...@gmx.net> wrote: > Hello, > > Marcin Borkowski <mb...@mbork.pl> writes: > >> Hi list, >> >> I'm seeking ideas/workflows for a situation where I work partly in >> office and partly rem

Re: [O] Clocking work time vs. office time

2016-04-29 Thread Marcin Borkowski
On 2016-04-29, at 14:31, Peter Neilson <neil...@windstream.net> wrote: > On Fri, 29 Apr 2016 08:08:38 -0400, Loris Bennett > <loris.benn...@fu-berlin.de> wrote: > >> Eric S Fraga <e.fr...@ucl.ac.uk> writes: >> >>> On Friday, 29 Apr 2016 at 09:25,

Re: [O] Clocking work time vs. office time

2016-04-29 Thread Marcin Borkowski
On 2016-04-29, at 13:05, Eric S Fraga <e.fr...@ucl.ac.uk> wrote: > On Friday, 29 Apr 2016 at 09:25, Marcin Borkowski wrote: >> However, this does not help with my main issue: tracking /time in >> office/. Not /time in office working/, mind you. >> >> I'd like t

Re: [O] Clocking work time vs. office time

2016-04-29 Thread Marcin Borkowski
5 * Home time: ** Task 1/Project A: 1:15 ** Task 2/Project B: 0:30 So not only time spent on actual work on various tasks/projects, but also time /spent physically in the office/. Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

[O] Clocking work time vs. office time

2016-04-29 Thread Marcin Borkowski
ng "office time" and (during this office time) clocking e.g. individual tasks won't work. Any ideas? -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] new rule to capitalise the first word in a sentence? but how?

2016-04-27 Thread Marcin Borkowski
or me as I tend > to forget to capitalise the first word, but how can it be done please? Would this help? https://www.emacswiki.org/emacs/auto-capitalize.el > Thanks > Sharon. Hth, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] State of things: Email with orgmode?

2016-04-25 Thread Marcin Borkowski
s of org if possible? > > I simply change to org mode (e.g. M-x org-mode RET) to compose and then > back to message mode (M-x message-mode RET) when ready to htmlize the > buffer and send the email. Wouldn't Lentic help with this? (https://github.com/phillord/lentic) Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] toc isn't generated in a latex export

2016-04-13 Thread Marcin Borkowski
ons of the standard LaTeX classes. The drawback is that the manual is in Polish;-). > Thanks > Sharon. Hth, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] [OT] A new web browser‽

2016-04-11 Thread Marcin Borkowski
On 2016-04-11, at 06:37, Adam Porter <a...@alphapapa.net> wrote: > Eric Abrahamsen ericabrahamsen.net> writes: > >> I had no idea Firefox did this... > > ...You're not the only one... Me too, thanks for that tip!!! Best, -- Marcin Borkowski http://octd.wmi.amu

Re: [O] [OT] A new web browser‽

2016-04-09 Thread Marcin Borkowski
On 2016-04-08, at 21:39, Oleh Krehel <o...@oremacs.com> wrote: > Marcin Borkowski <mb...@mbork.pl> writes: > >> https://vivaldi.com/ > >> Did anyone hear about it? Any thoughts/experiences? > > It's a closed-source Chromium-based browser. Just ignor

Re: [O] [OT] A new web browser‽

2016-04-09 Thread Marcin Borkowski
On 2016-04-09, at 02:26, Eric Abrahamsen <e...@ericabrahamsen.net> wrote: > Adam Porter <a...@alphapapa.net> writes: > >> Marcin Borkowski mbork.pl> writes: >> >>> https://vivaldi.com/ >>> >>> Did anyone hear about it? Any th

Re: [O] [OT] A new web browser‽

2016-04-09 Thread Marcin Borkowski
On 2016-04-08, at 22:00, Adam Porter <a...@alphapapa.net> wrote: > Marcin Borkowski mbork.pl> writes: > >> https://vivaldi.com/ >> >> Did anyone hear about it? Any thoughts/experiences? "Taking notes >> while browsing" seems to be something c

[O] [OT] A new web browser‽

2016-04-08 Thread Marcin Borkowski
try it out, though I do not have too high hopes. Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

[O] Is it possible to call some function after capture?

2016-04-03 Thread Marcin Borkowski
Hi list, I know about `org-capture-after-finalize-hook', but is it possible for a function in there to know which capture template was used? TIA, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] patch for HTML links to GNU documents

2016-03-27 Thread Marcin Borkowski
o node name. That looks great; if it's accepted, I /immediatelly/ fetch the bleeding-edge Org and start using it!!! My use case is writing blog posts about Emacs using Org. Thanks, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] A proposed enhancement in entering timestamps

2016-03-24 Thread Marcin Borkowski
On 2016-03-24, at 16:30, Robert Horn <rjh...@alum.mit.edu> wrote: >>>> On 2016-03-18, at 17:51, Marcin Borkowski <mb...@mbork.pl> wrote: >>>> >>>>> I'm now reading org-read-date-analyze to be able to enable US military >>>>> fo

Re: [O] A proposed enhancement in entering timestamps

2016-03-24 Thread Marcin Borkowski
On 2016-03-24, at 14:09, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Marcin Borkowski <mb...@mbork.pl> writes: > >> On 2016-03-18, at 17:51, Marcin Borkowski <mb...@mbork.pl> wrote: >> >>> I'm now reading org-read-date-

Re: [O] A proposed enhancement in entering timestamps (was: A small fix in `org-read-date-analyze')

2016-03-22 Thread Marcin Borkowski
On 2016-03-18, at 17:51, Marcin Borkowski <mb...@mbork.pl> wrote: > I'm now reading org-read-date-analyze to be able to enable US military > format for hours (e.g., 2100 instead of 21:00). This is potentially > very useful (at least for me), since I'll be able to enter the hour

Re: [O] How to do for all clocks in the region or subtree?

2016-03-20 Thread Marcin Borkowski
On 2016-03-20, at 11:17, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Marcin Borkowski <mb...@mbork.pl> writes: > >> I have a function which does on a clock the point is on. >> I want to call it for every clock in the region if it is active,

Re: [O] A small fix in `org-read-date-analyze'

2016-03-19 Thread Marcin Borkowski
On 2016-03-17, at 23:12, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Marcin Borkowski <mb...@mbork.pl> writes: > >>> I attach a simple patch to enhance handling of two-digit years in >>> `org-read-date-analyze'. (I have the FSF pap

[O] A small fix in `org-read-date-analyze'

2016-03-19 Thread Marcin Borkowski
Hi, I attach a simple patch to enhance handling of two-digit years in `org-read-date-analyze'. (I have the FSF papers signed.) Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University >F

[O] How to do for all clocks in the region or subtree?

2016-03-19 Thread Marcin Borkowski
(do-something-with-clock-at-point)) --8<---cut here---end--->8--- Is it ok or is there some fancy way of iterating across all clock entries in the region? (I don't want any dependencies - only vanilla Org!) TIA, -- Marcin Borkowski http://octd.wm

[O] Is this (error (error ...)) form intentional?

2016-03-19 Thread Marcin Borkowski
error "Before first headline at position %d in buffer %s" (point) (current-buffer) --8<---cut here---end--->8--- Frankly, I don't see the point of nesting `error'. Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marc

Re: [O] A small fix in `org-read-date-analyze'

2016-03-19 Thread Marcin Borkowski
On 2016-03-17, at 12:52, Marcin Borkowski <mb...@mbork.pl> wrote: > Hi, > > I attach a simple patch to enhance handling of two-digit years in > `org-read-date-analyze'. (I have the FSF papers signed.) A better version (sorry for the noise). Best, -- Mar

[O] A proposed enhancement in entering timestamps (was: A small fix in `org-read-date-analyze')

2016-03-19 Thread Marcin Borkowski
On 2016-03-18, at 14:34, Nicolas Goaziou <m...@nicolasgoaziou.fr> wrote: > Hello, > > Marcin Borkowski <mb...@mbork.pl> writes: > >> Papers signed. > > OK. Applied. Thank you. Great, thanks! (This is my first contribution to Org-mode!) I'm now read

Re: [O] Bug: incorrect export for LaTeX [8.2.10 (release_8.2.10 @ c:/emacs25-91/share/emacs/25.0.91/lisp/org/)]

2016-03-06 Thread Marcin Borkowski
nts, four levels of nesting is even too many (by a factor of 2). My opinion is that base LaTeX should limit the nesting to two levels, and a special package (like enumitem) should be needed to cater for those really strange documents that need more. (Yes, they do exist, but are very rar

Re: [O] How to export casual letter without from and to address?

2016-03-05 Thread Marcin Borkowski
ation although probably unlikely. For > instance, have a look at http://www.latextemplates.com/ and maybe create > your own using the custom class example? You could also stick something like \let\maketitle=\relax in the preamble. Dirty hack, but it should get rid of the title/author/date stuff. > HTH, > eric Hth, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] How to export casual letter without from and to address?

2016-03-05 Thread Marcin Borkowski
to) do either or both, but I'd probably have to move to Mars to have longer days... > Thanks, > > York Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] Vertical space

2016-03-04 Thread Marcin Borkowski
On 2016-03-04, at 16:06, Johann Spies <johann.sp...@gmail.com> wrote: > On 4 March 2016 at 16:25, Marcin Borkowski <mb...@mbork.pl> wrote: > >> Why not use the enumitem package to add that space automatically? > > Thanks Marcin. I did not know about enumitem. T

Re: [O] Vertical space

2016-03-04 Thread Marcin Borkowski
w > Linux/Emacs/LaTeX :) > > My first problem is how to do this (\vspace{}) in orgmode (Know I how to > get the 'enumerate' environment working in orgmode): Why not use the enumitem package to add that space automatically? Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/

[O] Precision in the spreadsheet

2016-03-01 Thread Marcin Borkowski
I right? If yes, is there a way to change this behavior? (I suspect not, but I wanted to make sure.) Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] Is it possible to keep /all/ the heading properties in one place?

2016-02-29 Thread Marcin Borkowski
ues right > into the ".texi" document, so we would need to backport each of their > changes into the Org source. Duplicated efforts. I know next to nothing about texinfo, but would a converter from texinfo to Org be possible? (Or from info to Org, for that matter?) Best, -- Marcin Bork

[O] bug#18617: 24.3; loading simple-wiki-mode breaks org-mode

2016-02-21 Thread Marcin Borkowski
ction definition is void: first" error. (simple-wiki is not an Elpa package, so I could not install it via the package manager.) If the problem is still present, please describe exactly how you installed simple-wiki-mode so that I could see for myself what's happening. > Thanks, > humble emacs user Best, -- Marcin Borkowski

Re: [O] Latex package nicefrac for HTML export

2016-02-19 Thread Marcin Borkowski
a pinch you can say #+LaTeX_HEADER: \usepackage{nicefrac} \let\frac=\nicefrac and just use \frac. > LB Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] bug#6922: 23.1; Setting read-only property in an overlay has no effect

2016-02-17 Thread Marcin Borkowski
read-only. I suspect that trying to undo it would perhaps trigger some error, which could be confusing, but it would be still better than silently removing a vital information. Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science Adam Mickiewicz University

Re: [O] ox-tufte-latex

2016-02-03 Thread Marcin Borkowski
On 2016-02-03, at 12:05, Rasmus <ras...@gmx.us> wrote: > Marginnotes. I don’t think we have a concept like this. I guess Inline todos? > Thanks, > Rasmus Best, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Computer Science

Re: [O] "atomic knowledge" modeling tool

2016-02-03 Thread Marcin Borkowski
for instance. And I definitely do not want to subscribe to yet another mailing list only for that. Since many people would consider this off-topic, perhaps a better idea would be a blog with an RSS channel, updated - say - once every few weeks. I would gladly subscribe to that. > Thanks! &

Re: [O] ox-tufte-latex

2016-02-03 Thread Marcin Borkowski
On 2016-02-03, at 12:41, Rasmus <ras...@gmx.us> wrote: > Marcin Borkowski <mb...@mbork.pl> writes: > >> On 2016-02-03, at 12:05, Rasmus <ras...@gmx.us> wrote: >> >>> Marginnotes. I don’t think we have a concept like this. I >>> gues

<    1   2   3   4   5   6   7   8   9   >