Skip to content

Commit

Permalink
[cmdlog-] fix support for .vd
Browse files Browse the repository at this point in the history
  • Loading branch information
anjakefala committed Oct 18, 2023
1 parent 7f8cb7e commit 2b2f604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion visidata/mainloop.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ def mainloop(self, scr):
# play next queued command
if self._nextCommands:
cmd = self._nextCommands.pop(0)
if isinstance(cmd, dict):
if isinstance(cmd, (dict, list)): # .vd cmdlog rows are NamedListTemplate
if self.replayOne(cmd):
self.replay_cancel()
else:
Expand Down

0 comments on commit 2b2f604

Please sign in to comment.