Change editor's current working directory

This commit is contained in:
Ivan R. 2022-09-25 13:59:26 +05:00
parent 94f653d84b
commit ab3a4c2941
No known key found for this signature in database
GPG key ID: 67AA0CE744B974B8

View file

@ -37,7 +37,7 @@ def edit_note(base_dir: str, note_date: date):
filename = f'{note_date.day:02}.txt' filename = f'{note_date.day:02}.txt'
path_to_file = os.path.join(workdir, filename) path_to_file = os.path.join(workdir, filename)
editor = os.environ.get('EDITOR', 'nano') editor = os.environ.get('EDITOR', 'nano')
subprocess.run([editor, path_to_file], check=True) subprocess.run([editor, path_to_file], check=True, cwd=base_dir)
if __name__ == '__main__': if __name__ == '__main__':