aboutsummaryrefslogtreecommitdiffhomepage
path: root/input.h
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-05 14:18:16 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-05 14:18:16 -0800
commitf35d2629d40908bb4a516e9801a42bb47e501012 (patch)
tree3753d4f49aeada7b53e649adb067a2869bf0c0c0 /input.h
parent0e5578204ea8ec906b110c5e710da0c94437b2f7 (diff)
Notice when fish_term256 changes and react to it
Diffstat (limited to 'input.h')
-rw-r--r--input.h15
1 files changed, 6 insertions, 9 deletions
diff --git a/input.h b/input.h
index 5669db3f..fbb4d7fd 100644
--- a/input.h
+++ b/input.h
@@ -119,24 +119,21 @@ bool input_mapping_get( const wcstring &sequence, wcstring &cmd );
*/
const wchar_t *input_terminfo_get_sequence( const wchar_t *name );
-/**
- Return the name of the terminfo variable with the specified sequence
- */
+/** Return the name of the terminfo variable with the specified sequence */
bool input_terminfo_get_name( const wcstring &seq, wcstring &name );
/** Return a list of all known terminfo names */
wcstring_list_t input_terminfo_get_names( bool skip_null );
-/**
- Returns the input function code for the given input function name.
-*/
+/** Returns the input function code for the given input function name. */
wchar_t input_function_get_code( const wcstring &name );
-/**
- Returns a list of all existing input function names
- */
+/** Returns a list of all existing input function names */
wcstring_list_t input_function_get_names( void );
+/** Updates our idea of whether we support term256 */
+void update_fish_term256();
+
#endif