emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* Newbie Question
@ 2009-05-11 17:01 Tennis Smith
  0 siblings, 0 replies; 6+ messages in thread
From: Tennis Smith @ 2009-05-11 17:01 UTC (permalink / raw)
  To: Emacs-orgmode


[-- Attachment #1.1: Type: text/plain, Size: 157 bytes --]

Hi,

I used CUA mode, so my "C-c" is taken up by the "Copy" function.  Is there
some way I can replace "C-c" for org mode with, say, "C-Alt-C" ?

Thanks,
-T

[-- Attachment #1.2: Type: text/html, Size: 218 bytes --]

[-- Attachment #2: Type: text/plain, Size: 204 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Newbie question
@ 2013-02-08 12:50 Ken
  2013-02-08 13:15 ` Julian Burgos
  2013-02-08 15:12 ` Nick Dokos
  0 siblings, 2 replies; 6+ messages in thread
From: Ken @ 2013-02-08 12:50 UTC (permalink / raw)
  To: emacs-orgmode

Hello all,

I am a relative newbie to org-mode. Right now I use it for todo lists, I
use it in conjunction with the diary, and I use it for
journaling/note-taking. I am sure I am only using it fo a quarter or
less of what it can be used for. Anyway, my question is rather simple.
<CTRL-.> will allow you to insert a date. However, in my journal I use a
full timestamp. Is there any way using a defined set of keys to insert a
current TIMESTAMP on an entry (say as in a journal entry)?

Thank you
Ken


-- 
The only thing better than love is milk.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Newbie question
  2013-02-08 12:50 Ken
@ 2013-02-08 13:15 ` Julian Burgos
  2013-02-08 15:50   ` Ken
  2013-02-08 15:12 ` Nick Dokos
  1 sibling, 1 reply; 6+ messages in thread
From: Julian Burgos @ 2013-02-08 13:15 UTC (permalink / raw)
  To: Ken; +Cc: emacs-orgmode

Hi Ken,

If you do  <C-u C-c .> you will get an active timestamp with date and 
time. <C-u C-c !> will give you an inactive timestamp with date and time.
I also have this code in my .emacs file, so whenever I create a headline 
I get an inactive timestamp automatically.  It should be easy to change 
to get an active timestamp if you want.

;------------------------------------------------------------------------------
;Creating new headlines insert inactive timestamps automatically

(defun bh/insert-inactive-timestamp ()
(interactive)
(org-insert-time-stamp nil t t nil nil nil))

(defun bh/insert-heading-inactive-timestamp ()
(save-excursion
(org-return)
(org-cycle)
(bh/insert-inactive-timestamp)))

(add-hook 'org-insert-heading-hook 'bh/insert-heading-inactive-timestamp)
;-------------------------------------------------------------------------

Enjoy!

-- 
Julian Mariano Burgos, PhD
Hafrannsóknastofnunin/Marine Research Institute
Skúlagata 4, 121 Reykjavík, Iceland
Sími/Telephone : +354-5752037
Bréfsími/Telefax:  +354-5752001
Netfang/Email: julian@hafro.is



On 02/08/2013 12:50 PM, Ken wrote:
> Hello all,
>
> I am a relative newbie to org-mode. Right now I use it for todo lists, I
> use it in conjunction with the diary, and I use it for
> journaling/note-taking. I am sure I am only using it fo a quarter or
> less of what it can be used for. Anyway, my question is rather simple.
> <CTRL-.> will allow you to insert a date. However, in my journal I use a
> full timestamp. Is there any way using a defined set of keys to insert a
> current TIMESTAMP on an entry (say as in a journal entry)?
>
> Thank you
> Ken
>
>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Newbie question
  2013-02-08 12:50 Ken
  2013-02-08 13:15 ` Julian Burgos
@ 2013-02-08 15:12 ` Nick Dokos
  1 sibling, 0 replies; 6+ messages in thread
From: Nick Dokos @ 2013-02-08 15:12 UTC (permalink / raw)
  To: Ken; +Cc: emacs-orgmode

Ken <kensubuntu@gmail.com> wrote:

> Hello all,
> 
> I am a relative newbie to org-mode. Right now I use it for todo lists, I
> use it in conjunction with the diary, and I use it for
> journaling/note-taking. I am sure I am only using it fo a quarter or
> less of what it can be used for. Anyway, my question is rather simple.
> <CTRL-.> will allow you to insert a date. However, in my journal I use a
> full timestamp. Is there any way using a defined set of keys to insert a
> current TIMESTAMP on an entry (say as in a journal entry)?
> 

This (and many other questions) is answered in the manual: for this one,
see section 8.2, "Creating timestamps". The manual is available online
e.g.

	http://orgmode.org/org.html#Dates-and-Times

but I generally prefer to look up things locally, using emacs's info
system. For example, evaluate the following in emacs:

    (info "(org) Creating timestamps")

Nick

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Newbie question
  2013-02-08 13:15 ` Julian Burgos
@ 2013-02-08 15:50   ` Ken
  0 siblings, 0 replies; 6+ messages in thread
From: Ken @ 2013-02-08 15:50 UTC (permalink / raw)
  To: Julian Burgos; +Cc: emacs-orgmode

On Fri, Feb 08, 2013 at 01:15:19PM +0000, Julian Burgos wrote:
> Hi Ken,
> 
> If you do  <C-u C-c .> you will get an active timestamp with date
> and time. <C-u C-c !> will give you an inactive timestamp with date
> and time.
> I also have this code in my .emacs file, so whenever I create a
> headline I get an inactive timestamp automatically.  It should be
> easy to change to get an active timestamp if you want.
> 
> ;------------------------------------------------------------------------------
> ;Creating new headlines insert inactive timestamps automatically
> 
> (defun bh/insert-inactive-timestamp ()
> (interactive)
> (org-insert-time-stamp nil t t nil nil nil))
> 
> (defun bh/insert-heading-inactive-timestamp ()
> (save-excursion
> (org-return)
> (org-cycle)
> (bh/insert-inactive-timestamp)))
> 
> (add-hook 'org-insert-heading-hook 'bh/insert-heading-inactive-timestamp)
> ;-------------------------------------------------------------------------
> 
> Enjoy!

Thanks, Julian. I much appreciate this.

Ken


> 
> -- 
> Julian Mariano Burgos, PhD
> Hafrannsóknastofnunin/Marine Research Institute
> Skúlagata 4, 121 Reykjavík, Iceland
> Sími/Telephone : +354-5752037
> Bréfsími/Telefax:  +354-5752001
> Netfang/Email: julian@hafro.is
> 
> 
> 
> On 02/08/2013 12:50 PM, Ken wrote:
> >Hello all,
> >
> >I am a relative newbie to org-mode. Right now I use it for todo lists, I
> >use it in conjunction with the diary, and I use it for
> >journaling/note-taking. I am sure I am only using it fo a quarter or
> >less of what it can be used for. Anyway, my question is rather simple.
> ><CTRL-.> will allow you to insert a date. However, in my journal I use a
> >full timestamp. Is there any way using a defined set of keys to insert a
> >current TIMESTAMP on an entry (say as in a journal entry)?
> >
> >Thank you
> >Ken
> >
> >
> 
> 

-- 
Work consists of whatever a body is obliged to do.
Play consists of whatever a body is not obliged to do.
		-- Mark Twain

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Newbie question
@ 2018-08-01 14:07 Henrik Frisk
  0 siblings, 0 replies; 6+ messages in thread
From: Henrik Frisk @ 2018-08-01 14:07 UTC (permalink / raw)
  To: emacs-orgmode

[-- Attachment #1: Type: text/plain, Size: 1987 bytes --]

Hi,

I'm new with Scheme and new with org babel so excuse me if I am missing
something obvious.
I have this bit of (simplified) Scheme code to generate a list of lists:

    #+name: chromatic
    #+begin_src scheme :noweb yes
      (map (lambda (x)
     (cond ((< x 4) (list 0 1))
   ((equal? x 4) (list 2 0))
   ((> x 4) (list 1 1))))
   (list 0 1 2 3 4 5 6 7 8 9 10 11))
    #+end_src

It appears to be working fine outputting a table such as

    #+RESULTS:
    | 0 | 1 |
    | 0 | 1 |
    | 0 | 1 |
 ...

For another function in Lilypond, also in scheme I need it to be a (list
(list 0 1) (list 0 1)...) as in the variable seq below:

 #+begin_src scheme :noweb yes
 $(let ((random-state (seed->random-state (current-time)))
       (seq (list (list 0 0) (list 0 1/2) (list 1 0) (list 1 1/2) (list 2
0) (list 3 0) (list 3 1/2) (list 4 0) (list 4 1/2) (list 5 0) (list 5 1/2)
(list 6 0))))
   (make-sequential-music
    (map (lambda (x p)
   (let ((idx (random 12 random-state)))
     (make-music 'NoteEvent
'duration (ly:make-duration 2 0 1/1)
'pitch (ly:make-pitch 0 (car p) (car (cdr p))))))
   (make-list (length seq)) seq)))
     #+end_src

I can do:

(seq <<alist>>)

if alist is:

    #+name: alist
    #+begin_src scheme
      (list (list 0 0) (list 0 1/2) (list 1 0) (list 1 1/2) (list 2 0)
(list 3 0) (list 3 1/2) (list 4 0) (list 4 1/2) (list 5 0) (list 5 1/2)
(list 6 0))
    #+end_src

but what I would like to be able to do is to have have the noweb reference
be to the 'chromatic' function above as in:

(seq <<chromatic()>>)

but that doesn't work. Maybe what I am trying to do is not possible, maybe
there is a limitation on ob-lilypond, but it seems to me that the result of
my function chromatic above spits out ((0 1) (0 1)... ) and that this is
the cause it doesn't work.

Again, I am really new to this...

The workaround I am doing is to format the output of chromatic into a
proper list och lists and then add it by noweb reference.

Any hints welcome.
/Henrik

[-- Attachment #2: Type: text/html, Size: 3186 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2018-08-01 14:07 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-01 14:07 Newbie question Henrik Frisk
  -- strict thread matches above, loose matches on Subject: below --
2013-02-08 12:50 Ken
2013-02-08 13:15 ` Julian Burgos
2013-02-08 15:50   ` Ken
2013-02-08 15:12 ` Nick Dokos
2009-05-11 17:01 Newbie Question Tennis Smith

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).