Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
50 line screen mode (Atari).
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  4 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Adam David  
View profile  
 More options Mar 29 1991, 11:06 am
Newsgroups: comp.os.minix
From: ad...@rhi.hi.is (Adam David)
Date: 29 Mar 91 16:06:43 GMT
Local: Fri, Mar 29 1991 11:06 am
Subject: 50 line screen mode (Atari).
When I press F1 in minix 1.5 the cursor jumps to the left end of whatever line
it's in and enters 50 line mode. This is useful but there are 2 problems:
a) I have not been able to find how to get back into 25 line mode.
b) Some programs screw up because they think they are still working with a 25
   line screen. So far I have observed 'mined'. This is what happens:
   mined comes in on the top half of the screen because it intends to work with
   25 lines only. Scrolling back and forth in a file larger than 25 lines
   results in downwards-scrolling text spilling over into the lower screen area.
   Repeated scrolling up and down seems to cause confusion because not only is
   there spillover but also the top 25 lines (where mined has its active window)
   show multiple repeated lines. The file being edited is not corrupted, it is
   only the screen output.

So, what should I do to (a) get back into 25 line mode when I want to and (b)
use the 50 line mode reliably.
--
Adam David.  ad...@rhi.hi.is


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Joerg Conradt  
View profile  
 More options Apr 1 1991, 1:13 pm
Newsgroups: comp.os.minix
From: j...@dobag.in-berlin.de (Joerg Conradt)
Date: 1 Apr 91 18:13:15 GMT
Local: Mon, Apr 1 1991 1:13 pm
Subject: Re: 50 line screen mode (Atari).

you can enter the 50 - lines mode by writing ESC [ 0 ~
              the 25 - lines mode by writing ESC [ 1 ~ on the screen.
And I suppose you'll have to change programm-sources to make
them work with 50 lines at the screen.
Joerg Conradt
--
j...@dobag.in-berlin.de    | The number of viewers watching you is
Alias Joerg Conradt       | proportional to the stupidity of your
1000 Berlin 41 Germany    | action.
++ 0307958397             |

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Klamer Schutte  
View profile  
 More options Apr 2 1991, 3:55 am
Newsgroups: comp.os.minix
From: kla...@mi.eltn.utwente.nl (Klamer Schutte)
Date: 2 Apr 91 08:55:24 GMT
Local: Tues, Apr 2 1991 3:55 am
Subject: Re: 50 line screen mode (Atari).
In <EFLP...@dobag.in-berlin.de> j...@dobag.in-berlin.de (Joerg Conradt) writes:

>you can enter the 50 - lines mode by writing ESC [ 0 ~
>              the 25 - lines mode by writing ESC [ 1 ~ on the screen.
>And I suppose you'll have to change programm-sources to make
>them work with 50 lines at the screen.

Most programs like to use 50 lines if you set your termcap entry correct:
the 'li' entry should give 50, not 25.

I have two termcap entries: minix and minixh. minix has 25 lines,
minixh 50.

Klamer
--
Klamer Schutte
Faculty of electrical engineering -- University of Twente, The Netherlands
kla...@mi.eltn.utwente.nl     {backbone}!mcsun!mi.eltn.utwente.nl!klamer


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Bert Laverman  
View profile  
 More options Apr 2 1991, 4:11 pm
Newsgroups: comp.os.minix
From: b...@arrakis.nl.mugnet.org (Bert Laverman)
Date: 2 Apr 91 21:11:00 GMT
Subject: Re: 50 line screen mode (Atari).
In article <2...@krafla.rhi.hi.is>, ad...@rhi.hi.is (Adam David) wrote:
> When I press F1 in minix 1.5 the cursor jumps to the left end of whatever line
> it's in and enters 50 line mode.

If you check the generated escape codes, you'll find F1 to generate:
        ^[[1~   (ESC leftbracket 1 tilde)
If you check /usr/src/kernel/stvdu.c, you'll find that:
        ^[[ l;a;m;r;g;b ~
Is used for several ST specific settings. ^[[1~ happens to switch on
50 line mode (l=1), ^[[0~ will bring you back to 25 lines.

> This is useful but there are 2 problems:
> a) I have not been able to find how to get back into 25 line mode.

Just type at the prompt Ctrl-[ (or press Esc), '[', '0', '~'. The
cursor will hop to the left marging and be big again. Don't forget to
erase these characters from your buffer. (Just press Return and ignore the
error)

> b) Some programs screw up because they think they are still working with a 25
>    line screen. So far I have observed 'mined'. This is what happens:
>    mined comes in on the top half of the screen because it intends to work with
>    25 lines only. Scrolling back and forth in a file larger than 25 lines
>    results in downwards-scrolling text spilling over into the lower screen area.
>    Repeated scrolling up and down seems to cause confusion because not only is
>    there spillover but also the top 25 lines (where mined has its active window)
>    show multiple repeated lines. The file being edited is not corrupted, it is
>    only the screen output.

You can make a termcap entry for this, or take the vga50 entry Fred posted
just a short while ago. I tried it, and it works like a cinch for elvis.
Mg also accepts it, as well as elle. Mined however has the 25-lines
hacked in, and is therefore not willing to change it's mind.

Greetings, Bert

=====================================================================
    Bert Laverman               email: b...@arrakis.nl.mugnet.org
    Molukkenstraat 148          work:  laver...@cs.rug.nl
    9715 NZ  Groningen
    The Netherlands             tel.:  +31 50 - 733587

   From "How to catch a lion in the desert":
      The Peano method:
        In the usual way construct a curve containing every point
        in the desert. It has been proven that such a curve can
        be traversed in arbitrarily short time. Now we traverse
        the curve, carrying a spear, in a time less than what it
        takes the lion to move a distance equal to it's own length.
=====================================================================


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google