* Re:
2007-04-04 19:09 (unknown) Jost Burkardt
@ 2007-04-05 0:26 ` Jason F. McBrayer
0 siblings, 0 replies; 6+ messages in thread
From: Jason F. McBrayer @ 2007-04-05 0:26 UTC (permalink / raw)
To: Jost Burkardt; +Cc: emacs-orgmode
Jost Burkardt <jost.burkardt@web.de> writes:
> I really love the integration of remember with org, especially the way
> how to insert the notes by moving within the headings-tree.
>
> Is it possible to use this feature also for moving portions of text
> via regular copy/paste an org-buffer, and have org automatically adapt
> the header levels? I didn't find anything in the manual.
C-c C-x C-w will cut a subtree, which you can paste with C-c C-x C-y,
and it will automatically adapt the header levels. You can navigate
to where you want to insert it with C-c C-j, which works a lot like
selecting your place with org-remember.
--
+-----------------------------------------------------------+
| Jason F. McBrayer jmcbray@carcosa.net |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors. --- The Dhammapada |
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re:
@ 2008-08-06 15:50 Michaël Parienti
2008-08-06 16:57 ` Re: Paul R
0 siblings, 1 reply; 6+ messages in thread
From: Michaël Parienti @ 2008-08-06 15:50 UTC (permalink / raw)
To: Paul R; +Cc: emacs-orgmode
Le mer 06/08/08 09:37, Paul R paul.r.ml@gmail.com a écrit:
> Hi Michaël,
>
> On Mon, 4 Aug 2008 14:21:00 +0200, Michaël Parienti <michael
> @parienti.name> said:
> Michaël> Hi,
>
> Michaël> After upgrading to orgmode version 6.05 (with an aptitude
> Michaël> dist-upgrade under a debian sid system), and changing my
> Michaël> configuration file to resolve the problem described here:
> Michaël> http://www.mail-archive.com/emacs-o
>
> rgmode@gnu.org/msg07167.html,
Michaël> I still have a problem when I type C-ca. I get the
> following
Michaël> error message:
>
> Michaël> "Autoloading failed to define function org-agenda"
I uninstall one of my emacs version (the snapshot one) and keep
just the 22.2.1 version. I reinstall the org-mode package from
debian repository.
I am sure that I have only one version of the org-mode files
availables for emacs: I manually deleted source directory
(*..el files) and the *.elc files compiled for snapshot version
of emacs.
Here is the content of my load-path variable:
("/usr/share/emacs22/site-lisp/python-mode"
"/usr/share/emacs22/site-lisp/pymacs"
"/usr/share/emacs22/site-lisp/pymacs"
"/usr/share/emacs22/site-lisp/org-mode"
"/usr/share/emacs22/site-lisp/css-mode"
"/usr/share/emacs/site-lisp/css-mode"
"/usr/share/emacs22/site-lisp/a2ps"
"/usr/share/emacs22/site-lisp/wl"
"/usr/share/emacs22/site-lisp/semi"
"/usr/share/emacs22/site-lisp/w3m"
"/usr/share/emacs22/site-lisp/w3m/shimbun"
"/usr/share/emacs22/site-lisp/html-helper-mode" ...) available
in *Message* buffer. It seems troncated, but I don't know how to
get it complety.
--
Michaël Parienti
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re:
2008-08-06 15:50 Re: Michaël Parienti
@ 2008-08-06 16:57 ` Paul R
0 siblings, 0 replies; 6+ messages in thread
From: Paul R @ 2008-08-06 16:57 UTC (permalink / raw)
To: michael; +Cc: emacs-orgmode
On Wed, 6 Aug 2008 17:50:38 +0200, " Michaël Parienti" <michael@parienti.name> said:
Michaël> I uninstall one of my emacs version (the snapshot one) and
Michaël> keep just the 22.2.1 version. I reinstall the org-mode
Michaël> package from debian repository.
Michaël> I am sure that I have only one version of the org-mode files
Michaël> availables for emacs: I manually deleted source directory
Michaël> (*..el files) and the *.elc files compiled for snapshot
Michaël> version of emacs.
What happens if you (require 'org-install) before first call to org ?
If it works straight, then you may need to find where your default org
autoloads are defined. If it does not work, then you may need to
rebuild the org-install file. To do so, on debian, get your package
sources and run the build process. org-install.el is generated during
this process IIRC. Finally, depending on your conclusions, you can
write an email to the package maintainer to inform him that something
is wrong in its org package.
--
Paul
^ permalink raw reply [flat|nested] 6+ messages in thread
* (no subject)
@ 2022-01-20 14:13 Roger Mason
2022-01-20 19:57 ` Immanuel Litzroth
0 siblings, 1 reply; 6+ messages in thread
From: Roger Mason @ 2022-01-20 14:13 UTC (permalink / raw)
To: Org Mode Mailing List
Hello,
I want to run stack ghci from haskell blocks in org-mode. For the
task at I need to start ghci with command line option
-XFlexibleContexts. I have this in my org-mode buffer:
#+begin_src emacs-lisp :results none
(setq haskell-process-type 'stack-ghci)
(setq haskell-process-args-stack-ghci (list "--ghci-options -XFlexibleContexts"))
#+end_src
but I get
Process haskell exited abnormally with code 1
Invalid option `--ghci-options -XFlexibleContexts'
in the inferior haskell buffer.
Does anyone know how to do what I want?
Thanks,
Roger
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re:
2022-01-20 14:13 Roger Mason
@ 2022-01-20 19:57 ` Immanuel Litzroth
2022-01-20 19:58 ` Re: Roger Mason
0 siblings, 1 reply; 6+ messages in thread
From: Immanuel Litzroth @ 2022-01-20 19:57 UTC (permalink / raw)
To: Roger Mason; +Cc: Org Mode Mailing List
Just going by what I see, not having tried it:
(setq haskell-process-args-stack-ghci (list "--ghci-options"
"-XFlexibleContexts"))
In your version the process gets 1 argument (with a space in it). In
my version it gets 2 args.
Immanuel
On Thu, Jan 20, 2022 at 8:22 PM Roger Mason <rmason@mun.ca> wrote:
>
> Hello,
>
> I want to run stack ghci from haskell blocks in org-mode. For the
> task at I need to start ghci with command line option
> -XFlexibleContexts. I have this in my org-mode buffer:
>
> #+begin_src emacs-lisp :results none
> (setq haskell-process-type 'stack-ghci)
> (setq haskell-process-args-stack-ghci (list "--ghci-options -XFlexibleContexts"))
> #+end_src
>
> but I get
>
> Process haskell exited abnormally with code 1
> Invalid option `--ghci-options -XFlexibleContexts'
>
> in the inferior haskell buffer.
>
> Does anyone know how to do what I want?
>
> Thanks,
> Roger
>
--
-- A man must either resolve to point out nothing new or to become a
slave to defend it. -- Sir Isaac Newton
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re:
2022-01-20 19:57 ` Immanuel Litzroth
@ 2022-01-20 19:58 ` Roger Mason
0 siblings, 0 replies; 6+ messages in thread
From: Roger Mason @ 2022-01-20 19:58 UTC (permalink / raw)
To: Immanuel Litzroth; +Cc: Org Mode Mailing List
Immanuel Litzroth <immanuel.litzroth@gmail.com> writes:
> Just going by what I see, not having tried it:
> (setq haskell-process-args-stack-ghci (list "--ghci-options"
> "-XFlexibleContexts"))
>
> In your version the process gets 1 argument (with a space in it). In
> my version it gets 2 args.
> Immanuel
Indeed, that was it. Many thanks,
Roger
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2022-01-20 23:51 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-20 14:13 Roger Mason
2022-01-20 19:57 ` Immanuel Litzroth
2022-01-20 19:58 ` Re: Roger Mason
-- strict thread matches above, loose matches on Subject: below --
2008-08-06 15:50 Re: Michaël Parienti
2008-08-06 16:57 ` Re: Paul R
2007-04-04 19:09 (unknown) Jost Burkardt
2007-04-05 0:26 ` Jason F. McBrayer
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).