From 8daf01e986cb11c05cf72dc0a39aa1c253afd48e Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Thu, 22 Jun 2023 11:25:53 -0400 Subject: [PATCH] Better explain purpose of custom text editor option Former-commit-id: fec282230b92ee3035666a648544c86369643c21 Former-commit-id: fb0f46bac590e3f948c3404b1ae3991feefbbc5d --- lib/stweak.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/stweak.py b/lib/stweak.py index 6267b28..951d584 100644 --- a/lib/stweak.py +++ b/lib/stweak.py @@ -146,8 +146,8 @@ def editor_config(_env_mode): else: _editor = 'nano' else: - _editor = curses_text('enter the name of your preferred text editor:\n\n\n\n\n' - '(ctrl+g/enter to confirm)\n\nexample input: vim') + _editor = curses_text('enter the name of your preferred text editor:\n\n\n\n\n(ctrl+g/enter to confirm)' + '\n\nthis will be used for writing notes\n\nexample input: vim') if not sshyp_data.has_section('CLIENT-GENERAL'): sshyp_data.add_section('CLIENT-GENERAL') sshyp_data.set('CLIENT-GENERAL', 'text_editor', _editor)