[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [sc-dev] Re: Towards SC 4
- To: sc-dev@xxxxxxxxxxxxxxxx
- Subject: Re: [sc-dev] Re: Towards SC 4
- From: Renick Bell <renick@xxxxxxxxx>
- Date: Sat, 7 Dec 2013 15:09:51 +0900
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=dlPEXmaLIiw0EFsEhoHSFNiex1vdP29BVzDB4gGVlEM=; b=fteJ/vwFD7wBZU13MLsQr1ckgZkuu4BOAXHEkkDtSmgyWQ3pLGMFl5QtrISdrFjDab wlMLtvPQs+sNb/2NWfKxUD714aPpo1I0dYc9MqlaVNtLwxnQRodFmnO1ANC39+F2KqWi EkM+QioafUepvUxfSe1g/cfoMVAuOt1l4oCGJyJo1Y6YjlA9EKF9mGvz/f5kJ7d7mSv4 U6ooT2FKqoNkbQlmpwBVb9n1NXWQt9Zzj/yqMDmGShIzE2Z8O6Xl9cIplpst2jhLpSVJ lRMwr8VvgBJZNGcRc5BkKj3PxSH8fk9OHjr1nzuU4Q+Glh2LmaCd954tUFVOcu2HiYnx ll1g==
- In-reply-to: <52A1F4BA.5070007@friendlyvirus.org>
- List-id: SuperCollider developers mailing list <sc-devel.create.ucsb.edu>
- References: <CAHnM+yb+sRpVYbzjdKEg-LqLYainn221PgaSXX-ALBrhU=A3BA@mail.gmail.com> <52A1F4BA.5070007@friendlyvirus.org>
- Reply-to: sc-dev@xxxxxxxxxxxxxxxx
- Sender: owner-sc-dev@xxxxxxxxxxxxxxxx
> 1) As far as I know there isn't anything similar to the sc-ide where you
> select text (normal haskell code, anything that ghc would accept, i.e.
> not having to wrap do blocks with { } ) and execute, except for emacs
I do this with vim.
> for multiline execution, but that is not really usable either, since one
> would want the ability to manage multiple documents, and not have to
> copy paste every block of code to exectue to the scratch pad.
easily done with vim and tslime.
> the same monad value. Another option is to just redefine the function in
> ghci, that seems to be possible, but then other functions that referred
> to the old version of the function will continue to refer to the old
> version,
i store the functions in a mutable data structure and call them by reference, so that if they change, the changed version is used on the next call.
I suppose we really should move this conversation to haskell-art.