mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
chore(gen_vimdoc): call delete_lines_below
only if the file exists
Previously, `delete_lines_below` would raise `FileNotFoundError` when adding a new file to `CONFIG` and you had to manually write a file with help tag of the first section as placeholder. This change relieves you of that need.
This commit is contained in:
@@ -1116,7 +1116,8 @@ def main(config, args):
|
|||||||
doc_file = os.path.join(base_dir, 'runtime', 'doc',
|
doc_file = os.path.join(base_dir, 'runtime', 'doc',
|
||||||
CONFIG[target]['filename'])
|
CONFIG[target]['filename'])
|
||||||
|
|
||||||
delete_lines_below(doc_file, first_section_tag)
|
if os.path.exists(doc_file):
|
||||||
|
delete_lines_below(doc_file, first_section_tag)
|
||||||
with open(doc_file, 'ab') as fp:
|
with open(doc_file, 'ab') as fp:
|
||||||
fp.write(docs.encode('utf8'))
|
fp.write(docs.encode('utf8'))
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user