Re: [O] How to enter a tag when capturing?

2015-12-19 Thread Michael Strey
On Sa, 2015-12-19 at 16:48, Marcin Borkowski wrote: > I'd like to insert a tag while capturing an item. Of course, C-c C-c > finishes capture. I can insert the tag manually (and currently I'm > doing just that), but is there a better way? C-c C-q bound to org-set-tags-command. -- Michael Strey

Re: [O] How to enter a tag when capturing?

2015-12-19 Thread Nick Dokos
Marcin Borkowski writes: > Hi list, > > I'd like to insert a tag while capturing an item. Of course, C-c C-c > finishes capture. I can insert the tag manually (and currently I'm > doing just that), but is there a better way? > Not quite sure what you mean: do you want it to be part of the temp

[O] How to enter a tag when capturing?

2015-12-19 Thread Marcin Borkowski
Hi list, I'd like to insert a tag while capturing an item. Of course, C-c C-c finishes capture. I can insert the tag manually (and currently I'm doing just that), but is there a better way? TIA, -- Marcin Borkowski http://octd.wmi.amu.edu.pl/en/Marcin_Borkowski Faculty of Mathematics and Comp

Re: [O] how to enter ==

2014-07-25 Thread stardiviner
You should use Org-mode Symbols. ~\ equal~ (without space hehind ~\~). If you have string behind it, you should append ~{}~, like this: ~\ equal{}test~ (without space too). Rustom Mody writes: > If I enter code inline that has an == that is taken as an escape for code > So how to enter '==' li

Re: [O] how to enter ==

2014-04-03 Thread Eric S Fraga
Ah, I see. The easy solution is to use ~ instead of = in any code segment, as in the attached example of yours that I have modified. #+TITLE: Python for Unicode #+OPTIONS: toc:nil * Collections However there is a catch: ~⦃1,2,3⦄ == ⦃1,2,3,1,2⦄~ \\ Remember that in python ~set([1,2,3,1,2]) == se

Re: [O] how to enter ==

2014-04-02 Thread Rustom Mody
On Wed, Apr 2, 2014 at 6:39 PM, Eric S Fraga wrote: > On Wednesday, 2 Apr 2014 at 12:08, Rustom Mody wrote: > > On Wed, Apr 2, 2014 at 3:11 PM, Eric S Fraga wrote: > > > >> On Tuesday, 1 Apr 2014 at 02:52, Rustom Mody wrote: > >> > If I enter code inline that has an == that is taken as an esca

Re: [O] how to enter ==

2014-04-02 Thread Eric S Fraga
On Wednesday, 2 Apr 2014 at 12:08, Rustom Mody wrote: > On Wed, Apr 2, 2014 at 3:11 PM, Eric S Fraga wrote: > >> On Tuesday, 1 Apr 2014 at 02:52, Rustom Mody wrote: >> > If I enter code inline that has an == that is taken as an escape for code >> > So how to enter '==' literally >> >> How about

Re: [O] how to enter ==

2014-04-02 Thread Rustom Mody
On Wed, Apr 2, 2014 at 3:11 PM, Eric S Fraga wrote: > On Tuesday, 1 Apr 2014 at 02:52, Rustom Mody wrote: > > If I enter code inline that has an == that is taken as an escape for code > > So how to enter '==' literally > > How about ~==~? > > In that case the full ~==~ appears on export :-(

Re: [O] how to enter ==

2014-04-02 Thread Eric S Fraga
On Tuesday, 1 Apr 2014 at 02:52, Rustom Mody wrote: > If I enter code inline that has an == that is taken as an escape for code > So how to enter '==' literally How about ~==~? -- : Eric S Fraga (0xFFFCF67D), Emacs 24.3.1, Org release_8.2.5h-660-gef207f

Re: [O] how to enter ==

2014-03-31 Thread Rustom Mody
On Tue, Apr 1, 2014 at 8:01 AM, Rustom Mody wrote: > On Tue, Apr 1, 2014 at 7:34 AM, briangpowell . > wrote: >> * One thing that may work: >> >> = ^H= >> >> ** In emacs that would be: = Cqh= >> >> ** In vi that would be = Cvh= >> >> *** i.e. you enter a "Cntrl-h"--the literal control character ^

Re: [O] how to enter ==

2014-03-31 Thread Rustom Mody
On Tue, Apr 1, 2014 at 7:34 AM, briangpowell . wrote: > * One thing that may work: > > = ^H= > > ** In emacs that would be: = Cqh= > > ** In vi that would be = Cvh= > > *** i.e. you enter a "Cntrl-h"--the literal control character ^H--which is > literally: "BackSpace" > > --this may not work in th

Re: [O] how to enter ==

2014-03-31 Thread briangpowell .
* One thing that may work: = ^H= ** In emacs that would be: = Cqh= ** In vi that would be = Cvh= *** i.e. you enter a "Cntrl-h"--the literal control character ^H--which is literally: "BackSpace" --this may not work in this case; but, it works in a lot of strange cases. * Could also make a var

[O] how to enter ==

2014-03-31 Thread Rustom Mody
If I enter code inline that has an == that is taken as an escape for code So how to enter '==' literally