[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: lynx-dev Lynx keymap problem
From: |
Jacob Poon |
Subject: |
Re: lynx-dev Lynx keymap problem |
Date: |
Sat, 25 Apr 1998 23:32:39 -0400 |
On Thu, 23 Apr 1998, T.E.Dickey wrote:
> >
> > On Thu, 23 Apr 1998, T.E.Dickey wrote:
> >
> > > (offhand, I don't remember what bindkey is - what system are you
> > > running?)
> >
> > Under Sun OS 5.5.1, bindkey is a tcsh built-in command for setting key
> > bindings under the command line (and the few apps that use these
> > bindings). Anyway, it will be better if Lynx looks for bindkey settings
> > in addition to terminfo, since under my environment, '^A' maps to
> > 'beginning-of-line' and '^E' maps to 'end-of-line' under bindkey, but
> > 'kend' and 'khome' aren't defined in the active terminfo.
> that's a little awkward (to make Lynx use those setting) unless tcsh
> stashes the information in a file some place).
I can think of a quick and dirty way to obtain bindkey sequences, but it
requires grep:
# Grab all keystrokes binds 'end-of-line' bindings
set test = `bindkey | grep 'end-of-line'`
# Grab keystroke sequences
set i = 1
set j = 1
while ($j <= $#test)
set keystroke[i] = $test[j]
i += 1
j += 3
end
# Passing sequences to Lynx
foreach $k ($keystroke)
....
end
- lynx-dev Lynx keymap problem, Jacob Poon, 1998/04/23
- Re: lynx-dev Lynx keymap problem, John E. Davis, 1998/04/23
- Re: lynx-dev Lynx keymap problem, T.E.Dickey, 1998/04/23
- Re: lynx-dev Lynx keymap problem, T.E.Dickey, 1998/04/23
- Re: lynx-dev Lynx keymap problem, T.E.Dickey, 1998/04/23
- Re: lynx-dev Lynx keymap problem, T.E.Dickey, 1998/04/23
- Re: lynx-dev Lynx keymap problem,
Jacob Poon <=
- Re: lynx-dev Lynx keymap problem, T.E.Dickey, 1998/04/27