This block needs to be modified as follows to add the ^PgUp and ^PgDown
commands.

!StrongED.Defaults.Modes.BaseMode.ModeFile

#--- Global key definitions
#    These keys are checked last of all, and are also checked even if
#    StrongED doesn't have the input focus.

KeyList Global
	^F9		dbox_Chars
	^F1 1		GotoMark (1)
	^F2 1		GotoMark (2)
	^F3 1		GotoMark (3)
	^F4 1		GotoMark (4)
	F5 1		GotoBlock_Start
	F5 2		GotoBlock_End
	^H		HideAll
	^L		ListOfWindows
	^W		Complete(_Complete) ;
#	^W		WordToBuffer   ; These three are used to copy text to writable fields in dboxes.
	F7		BlockToBuffer  ; They have no meaning if no writable field has caret.
	F8		ClipToBuffer   ;
	F11		CreateText
	^Tab		SetDir
	Up		NextWindow
	Down		PreviousWindow
	^PgUp		UserMessage1(&400d1, "<1><0><0><0>")
	^PgDown		UserMessage1(&400d1, "<2><0><0><0>")
End