We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0c79c32 recently added new MR/Mr events to trigger backward search on shift-click; those events aren't handled in src/cmd/9term/win.c:
MR
Mr
src/cmd/9term/win.c
unknown message MR unknown message MR
Forwarding them essentially (acme(4) doesn't mention the use of a flag for R/r) as we do for ML/Ml seems to do the job:
acme(4)
R
r
ML
Ml
% git diff win.c diff --git a/src/cmd/9term/win.c b/src/cmd/9term/win.c index 9c7a12eb..c2e58086 100644 --- a/src/cmd/9term/win.c +++ b/src/cmd/9term/win.c @@ -464,6 +464,9 @@ stdinproc(void *v) /* just send it back */ if(e.flag & 2) gete(efd, &e2); + // fallthrough + case 'r': + case 'R': fsfidprint(efd, "%c%c%d %d\n", e.c1, e.c2, e.q0, e.q1); break;
The text was updated successfully, but these errors were encountered:
No branches or pull requests
0c79c32 recently added new
MR
/Mr
events to trigger backward search on shift-click; those events aren't handled insrc/cmd/9term/win.c
:Forwarding them essentially (
acme(4)
doesn't mention the use of a flag forR
/r
) as we do forML
/Ml
seems to do the job:The text was updated successfully, but these errors were encountered: