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
http://www.strey.biz * https://twitter.com/michaelstrey




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 template?
Otherwise, C-c C-q works in the capture buffer: is that enough?

-- 
Nick




[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 Computer Science
Adam Mickiewicz University



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 rustompm...@gmail.com writes:

 If I enter code inline that has an == that is taken as an escape for code
 So how to enter '==' literally




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]) == set([1,2,3])~ \\
-- 
: Eric S Fraga (0xFFFCF67D), Emacs 24.3.1, Org release_8.2.5h-660-gef207f


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-04-02 Thread Rustom Mody
On Wed, Apr 2, 2014 at 3:11 PM, Eric S Fraga e.fr...@ucl.ac.uk 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 Wednesday,  2 Apr 2014 at 12:08, Rustom Mody wrote:
 On Wed, Apr 2, 2014 at 3:11 PM, Eric S Fraga e.fr...@ucl.ac.uk 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 :-(

ummm, it doesn't for me but I guess you have the == within a larger code
segment?  Maybe post an example?  What version of org are you using?

-- 
: Eric S Fraga (0xFFFCF67D), Emacs 24.3.1, Org release_8.2.5h-660-gef207f



Re: [O] how to enter ==

2014-04-02 Thread Rustom Mody
On Wed, Apr 2, 2014 at 6:39 PM, Eric S Fraga e.fr...@ucl.ac.uk wrote:

 On Wednesday,  2 Apr 2014 at 12:08, Rustom Mody wrote:
  On Wed, Apr 2, 2014 at 3:11 PM, Eric S Fraga e.fr...@ucl.ac.uk 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 :-(

 ummm, it doesn't for me but I guess you have the == within a larger code
 segment?  Maybe post an example?  What version of org are you using?


Heres a file
--
#+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]) ~==~ set([1,2,3])= \\
--

And now do C-c C-e h o
Do not the tilde's remain?

org-version: 8.2.5e
emacs started with -Q (except for putting this in the path)


 --
 : Eric S Fraga (0xFFFCF67D), Emacs 24.3.1, Org release_8.2.5h-660-gef207f




-- 
http://www.the-magus.in
http://blog.languager.org


[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



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 variable: export EQUALS==; etc.



On Mon, Mar 31, 2014 at 9:52 PM, Rustom Mody rustompm...@gmail.com wrote:

 If I enter code inline that has an == that is taken as an escape for code
 So how to enter '==' literally




Re: [O] how to enter ==

2014-03-31 Thread Rustom Mody
On Tue, Apr 1, 2014 at 7:34 AM, briangpowell . briangpowel...@gmail.com 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 this case; but, it works in a lot of strange cases.

This doesn't work


 * Could also make a variable: export EQUALS==; etc.

I dont understand -- are you recommending an org-macro?



Re: [O] how to enter ==

2014-03-31 Thread Rustom Mody
On Tue, Apr 1, 2014 at 8:01 AM, Rustom Mody rustompm...@gmail.com wrote:
 On Tue, Apr 1, 2014 at 7:34 AM, briangpowell . briangpowel...@gmail.com 
 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 this case; but, it works in a lot of strange cases.

 This doesn't work


 * Could also make a variable: export EQUALS==; etc.

 I dont understand -- are you recommending an org-macro?

For the time being I am getting along with
==
in place of ==
ie two side-by-side FULL WIDTH EQUALS SIGN

Not very nice looking though...