Skip to content

Commit 18d108d

Browse files
committed
FEAT: added status message after saving command history
1 parent 5326f5f commit 18d108d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

larray_editor/editor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -956,6 +956,7 @@ def complete_slice(s):
956956
if 'commands were written to file' not in stdout:
957957
raise Exception(stdout)
958958
self.recent_saved_scripts.add(filepath)
959+
self.statusBar().showMessage(f"Command history was saved to {os.path.basename(filepath)}", 6000)
959960
except Exception as e:
960961
QMessageBox.critical(self, "Error", f"Cannot save history as {os.path.basename(filepath)}:\n{e}")
961962

0 commit comments

Comments
 (0)