From 49100cc40622bc3133450ab5579df57d0cf5adfa Mon Sep 17 00:00:00 2001 From: tma Date: Fri, 12 Oct 2007 22:34:45 +0000 Subject: * Unconditionally place a '\' at the start of the command buffer when autocompleting -- you're still all WRONG :p * Fix bugette where the completee didn't get its case copied from the completed token * Add functionality to autocomplete key names * Don't build client command completion on the dedicated server git-svn-id: svn://svn.icculus.org/quake3/trunk@1195 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/client/cl_keys.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'code/client') diff --git a/code/client/cl_keys.c b/code/client/cl_keys.c index 0f481a3..38f41d0 100644 --- a/code/client/cl_keys.c +++ b/code/client/cl_keys.c @@ -1062,6 +1062,18 @@ void Key_Bindlist_f( void ) { } } +/* +============ +Key_KeynameCompletion +============ +*/ +void Key_KeynameCompletion( void(*callback)(const char *s) ) { + int i; + + for( i = 0; keynames[ i ].name != NULL; i++ ) + callback( keynames[ i ].name ); +} + /* =================== CL_InitKeyCommands -- cgit v1.2.3