mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-30 16:50:48 +00:00
command docs patch from Misty-chan because his access hasn't completely come
through yet.
This commit is contained in:
parent
222eea81b1
commit
c6e087015c
35 changed files with 341 additions and 218 deletions
|
@ -752,9 +752,16 @@ Key_Init (void)
|
|||
//
|
||||
// register our functions
|
||||
//
|
||||
Cmd_AddCommand ("bind", Key_Bind_f, "No Description");
|
||||
Cmd_AddCommand ("unbind", Key_Unbind_f, "No Description");
|
||||
Cmd_AddCommand ("unbindall", Key_Unbindall_f, "No Description");
|
||||
Cmd_AddCommand ("bind", Key_Bind_f, "Assign a command or a set of commands to a key.\n"
|
||||
"Note: To bind multiple commands to a key, enclose the commands in quotes and separate with semi-colons. \n"
|
||||
"To bind to non-printable keys, use the key name.\n"
|
||||
"Key Name List: Escape, F1-F12, pause, backspace, tab, semicolon, enter, shift, ctrl, alt, space, ins,\n"
|
||||
"home, pgup, del, end, pgdn, uparrow, downarrow, leftarrow, rightarrow, mouse1-mouse3, aux1-aux9, joy1-joy4,\n"
|
||||
"mwheelup, mwheeldown\n"
|
||||
"Special: The escape, and ~ (tilde) keys can only be bound from an external configuration file.");
|
||||
|
||||
Cmd_AddCommand ("unbind", Key_Unbind_f, "Remove the bind from the the selected key");
|
||||
Cmd_AddCommand ("unbindall", Key_Unbindall_f, "Remove all binds (USE CAUTIOUSLY!!!)");
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue