diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2021-04-13 14:37:24 -0400 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2021-04-13 14:37:24 -0400 |
commit | 77cfc38b57626e2c5a0b3549407c13acecb62d20 (patch) | |
tree | 2dd9bf9761ee6b2478ab39503995b35b72683f4e /ted.h | |
parent | 69789c042460e012ec3054cc2e6ceeff25e394b9 (diff) |
improve tag generation (don't just look at files in the cwd)
Diffstat (limited to 'ted.h')
-rw-r--r-- | ted.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -80,6 +80,7 @@ typedef struct { u8 border_thickness; u8 padding; u8 scrolloff; + u8 tags_max_depth; char build_default_command[256]; // [i] = comma-separated string of file extensions for language i, or NULL for none char *language_extensions[LANG_COUNT]; @@ -318,6 +319,7 @@ typedef struct Ted { // incomplete UTF-8 code point. This is where we store that "tail end" until more // data is available. (This is up to 3 bytes, null terminated) char build_incomplete_codepoint[4]; + char **build_queue; // allows execution of multiple commands -- needed for tags generation char warn_unsaved_names[TED_PATH_MAX]; // comma-separated list of files with unsaved changes (only applicable if warn_unsaved != 0) char warn_overwrite[TED_PATH_MAX]; // file name user is trying to overwrite char ask_reload[TED_PATH_MAX]; // file name which we want to reload |