diff --git a/doc/pymple.txt b/doc/pymple.txt index 2119267..a221044 100644 --- a/doc/pymple.txt +++ b/doc/pymple.txt @@ -1,3 +1,4 @@ +*pymple.txt* pymple.nvim Help File ================================================================================ NVIM *pymple.nvim* diff --git a/scripts/gendocs.lua b/scripts/gendocs.lua index 5f9f2fe..a1ca7e3 100644 --- a/scripts/gendocs.lua +++ b/scripts/gendocs.lua @@ -21,6 +21,8 @@ docs.test = function() -- Output file local output_file_handle = io.open(OUTPUT_FILE, "w") + output_file_handle:write("*pymple.txt* pymple.nvim Help File\n") + for _, input_file in ipairs(input_files) do docgen.write(input_file, output_file_handle) end