Re: [Bug-apl] APL Questions

2015-09-16 Thread Blake McBride
On Mon, Sep 14, 2015 at 7:53 AM, Elias Mårtenson wrote: > > > On 14 September 2015 at 05:53, Louis de Forcrand wrote: > > >> Edit a specific line in a function? As of now I'm writing my >> long ∇-declared functions in in .txt files and loading them >> with -f, otherwise I would have to rewrite (

Re: [Bug-apl] APL Questions

2015-09-15 Thread Louis de Forcrand
Thanks for all your answers! Everything works perfectly. -Louis

Re: [Bug-apl] APL Questions

2015-09-14 Thread Kacper Gutowski
By the way, if you start your file with ⍝! or #!, then you will be able to )LOAD or )COPY changes into running session which might be fairly convenient if you prefer to use external editor (which you certainly are; line editors fell out of fashion many years ago) and prefer it not to be Emacs. Fol

Re: [Bug-apl] APL Questions

2015-09-14 Thread Kacper Gutowski
On Sun, Sep 13, 2015 at 11:53 PM, Louis de Forcrand wrote: > Is it possible to terminate a function while it's running > (eg. when you accidentally set a very large number > as an operand)? Pressing Control-C should signal ATTENTION which should suspend execution of current function. > I read a

Re: [Bug-apl] APL Questions

2015-09-14 Thread Elias Mårtenson
On 14 September 2015 at 05:53, Louis de Forcrand wrote: > Edit a specific line in a function? As of now I'm writing my > long ∇-declared functions in in .txt files and loading them > with -f, otherwise I would have to rewrite (or copy-paste) > them back in line by line in the terminal. I'd rec