Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
9a284fca
Commit
9a284fca
authored
18 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Use CTRL-T to change the title.
This isn't actually usefull as of yet.
parent
fc74594b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
exec/fseditor.js
+13
-4
13 additions, 4 deletions
exec/fseditor.js
with
13 additions
and
4 deletions
exec/fseditor.js
+
13
−
4
View file @
9a284fca
...
...
@@ -1547,11 +1547,11 @@ function edit(quote_first)
console
.
cleartoeol
();
console
.
write
(
"
\r\n
Editing keys:
"
);
console
.
cleartoeol
();
console
.
write
(
"
\r\n
CTRL-A - Change Colour CTRL-
P
-
Page Down
"
);
console
.
write
(
"
\r\n
CTRL-A - Change Colour CTRL-
Q
-
Quick Abort (no save)
"
);
console
.
cleartoeol
();
console
.
write
(
"
\r\n
CTRL-B - Move to beginning of line CTRL-
Q
-
Quick Abort (no save)
"
);
console
.
write
(
"
\r\n
CTRL-B - Move to beginning of line CTRL-
R
-
Redraw screen
"
);
console
.
cleartoeol
();
console
.
write
(
"
\r\n
CTRL-C - Center line on screen CTRL-
R
-
Redraw screen
"
);
console
.
write
(
"
\r\n
CTRL-C - Center line on screen CTRL-
T
-
Edit title
"
);
console
.
cleartoeol
();
console
.
write
(
"
\r\n
CTRL-E - Move to end of line CTRL-U - Enter quote mode
"
);
console
.
cleartoeol
();
...
...
@@ -1569,6 +1569,8 @@ function edit(quote_first)
console
.
cleartoeol
();
console
.
write
(
"
\r\n
CTRL-O - Page Up CTRL-_ - Quick Abort (no save)
"
);
console
.
cleartoeol
();
console
.
write
(
"
\r\n
CTRL-P - Page Down CTRL-_ - Quick Abort (no save)
"
);
console
.
cleartoeol
();
console
.
write
(
'
\r\n
'
);
console
.
cleartoeol
();
console
.
write
(
'
\r\n
'
);
...
...
@@ -1656,6 +1658,13 @@ function edit(quote_first)
case
'
\
x13
'
:
/* CTRL-S (Xon) */
break
;
case
'
\
x14
'
:
/* CTRL-T (Justify Line in SyncEdit) */
if
(
edit_top
==
5
)
{
console
.
gotoxy
(
7
,
1
);
var
newsubj
=
console
.
getstr
(
subj
,
70
,
K_LINE
|
K_EDIT
|
K_AUTODEL
);
if
(
newsubj
!=
''
)
subj
=
newsubj
;
redraw_screen
();
}
break
;
case
'
\
x15
'
:
/* CTRL-U (Quick Quote in SyncEdit) */
if
(
quote_mode
())
...
...
@@ -1789,7 +1798,7 @@ if(input_filename==undefined) {
bbs
.
sys_status
&=~
SS_PAUSEON
;
bbs
.
sys_status
|=
SS_PAUSEOFF
;
var
oldpass
=
console
.
ctrlkey_passthru
;
console
.
ctrlkey_passthru
=
"
+ACGKLOPQRUVWXYZ_
"
;
console
.
ctrlkey_passthru
=
"
+ACGKLOPQR
T
UVWXYZ_
"
;
/* Enable delete line in SyncTERM (Disabling ANSI Music in the process) */
console
.
write
(
"
\
033[=1M
"
);
console
.
clear
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment