diff options
author | pommicket <pommicket@gmail.com> | 2022-12-28 17:29:26 -0500 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-12-28 17:29:26 -0500 |
commit | dce1a94e3be8dc4b702d02d901d9b38c6f6a41ce (patch) | |
tree | 4ec198f966f34fe0aea5003d4e301bd33e13de03 /ted.h | |
parent | dc8d64a02d99368d2a66cff6caf5a18de3f06bd2 (diff) |
signature-help setting
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -172,6 +172,9 @@ typedef struct { } GlRcSAB; typedef struct { + // NOTE: to add more options to ted, add fields here, + // and change the options_<type> global constant in config.c + SettingsContext context; float cursor_blink_time_on, cursor_blink_time_off; u32 colors[COLOR_COUNT]; @@ -191,6 +194,7 @@ typedef struct { bool indent_with_spaces; bool trigger_characters; bool identifier_trigger_characters; + bool signature_help; bool lsp_enabled; u8 tab_width; u8 cursor_width; |