all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* howto edit a script file and test the function at the same time?
@ 2006-09-27  1:50 emacs
  2006-09-27 16:42 ` Kevin Rodgers
  0 siblings, 1 reply; 3+ messages in thread
From: emacs @ 2006-09-27  1:50 UTC (permalink / raw)


Hi,

I should like to have clues how to implement a "function" there when I
open a script file,
a screen with two windows opens up, editing windows above and output
windows below.
I also bind a key say "F9", when I press on that key, it perform the
execution by the script parser,
all outputs is visable in the window belows.

This script parser should also be a serial channel to a basic computer,
so when I press a key,
the string below the curser is transfer to the basic computer and the
answer is return to the output window.

Has anyone any ideers how this should be implemented or is it already
implemented?

Best Regards larsgoran.larsson

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

* Re: howto edit a script file and test the function at the same time?
  2006-09-27  1:50 howto edit a script file and test the function at the same time? emacs
@ 2006-09-27 16:42 ` Kevin Rodgers
  2006-09-28 14:40   ` Kevin Rodgers
  0 siblings, 1 reply; 3+ messages in thread
From: Kevin Rodgers @ 2006-09-27 16:42 UTC (permalink / raw)


emacs wrote:
> I should like to have clues how to implement a "function" there when I
> open a script file,
> a screen with two windows opens up, editing windows above and output
> windows below.
> I also bind a key say "F9", when I press on that key, it perform the
> execution by the script parser,
> all outputs is visable in the window belows.
> 
> This script parser should also be a serial channel to a basic computer,
> so when I press a key,
> the string below the curser is transfer to the basic computer and the
> answer is return to the output window.
> 
> Has anyone any ideers how this should be implemented or is it already
> implemented?

(global-set-key [f9] 'executable-interpret)

-- 
Kevin

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

* Re: howto edit a script file and test the function at the same time?
  2006-09-27 16:42 ` Kevin Rodgers
@ 2006-09-28 14:40   ` Kevin Rodgers
  0 siblings, 0 replies; 3+ messages in thread
From: Kevin Rodgers @ 2006-09-28 14:40 UTC (permalink / raw)


Kevin Rodgers wrote:
> emacs wrote:
>> I should like to have clues how to implement a "function" there when I
>> open a script file,
>> a screen with two windows opens up, editing windows above and output
>> windows below.
>> I also bind a key say "F9", when I press on that key, it perform the
>> execution by the script parser,
>> all outputs is visable in the window belows.
>>
>> This script parser should also be a serial channel to a basic computer,
>> so when I press a key,
>> the string below the curser is transfer to the basic computer and the
>> answer is return to the output window.
>>
>> Has anyone any ideers how this should be implemented or is it already
>> implemented?
> 
> (global-set-key [f9] 'executable-interpret)

Better would be:

(add-hook 'sh-mode-hook
	  (lambda ()
	    (local-set-key [f9] 'executable-interpret)))

-- 
Kevin

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

end of thread, other threads:[~2006-09-28 14:40 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-09-27  1:50 howto edit a script file and test the function at the same time? emacs
2006-09-27 16:42 ` Kevin Rodgers
2006-09-28 14:40   ` Kevin Rodgers

Code repositories for project(s) associated with this external index

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

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.