diff options
author | pommicket <pommicket@gmail.com> | 2022-09-29 17:58:50 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2022-09-29 17:58:50 -0400 |
commit | a9a882c362296f393d5b52e19abb48f81f2b0581 (patch) | |
tree | 2073bb601a0e044dea88156e425df9ece8308cf0 | |
parent | 44c338433284b0ecb3c30cef5aae0cdb3b06901f (diff) |
added .rs, .go to is_source_file for ctags
-rw-r--r-- | tags.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -23,7 +23,7 @@ static bool is_source_file(char const *filename) { char const *dot = strchr(filename, '.'); char const *const extensions[] = { "py", "c", "h", "cpp", "hpp", "cc", "hh", "cxx", "hxx", "C", "H", - "rb", "lua", "s", "asm", "js", "pl", "cs", "sh", "java", "php" + "rb", "rs", "go", "lua", "s", "asm", "js", "pl", "cs", "sh", "java", "php" }; if (!dot) return false; for (size_t i = 0; i < arr_count(extensions); ++i) { |