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 /command.h | |
parent | 69789c042460e012ec3054cc2e6ceeff25e394b9 (diff) |
improve tag generation (don't just look at files in the cwd)
Diffstat (limited to 'command.h')
-rw-r--r-- | command.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -80,6 +80,7 @@ ENUM_U16 { CMD_BUILD_PREV_ERROR, CMD_BUILD_NEXT_ERROR, CMD_SHELL, + CMD_GENERATE_TAGS, CMD_GOTO_DEFINITION, // "go to definition of..." CMD_GOTO_LINE, // open "goto line..." menu @@ -164,6 +165,7 @@ static CommandName const command_names[] = { {"build-prev-error", CMD_BUILD_PREV_ERROR}, {"build-next-error", CMD_BUILD_NEXT_ERROR}, {"shell", CMD_SHELL}, + {"generate-tags", CMD_GENERATE_TAGS}, {"goto-definition", CMD_GOTO_DEFINITION}, {"goto-line", CMD_GOTO_LINE}, {"split-horizontal", CMD_SPLIT_HORIZONTAL}, |