##// END OF EJS Templates
Backport PR #9943: Only track unique history of commands...
Matthias Bussonnier -
Show More
@@ -230,6 +230,7 b' class TerminalInteractiveShell(InteractiveShell):'
230 230 cell = cell.rstrip()
231 231 if cell and (cell != last_cell):
232 232 history.append(cell)
233 last_cell = cell
233 234
234 235 self._style = self._make_style_from_name_or_cls(self.highlighting_style)
235 236 style = DynamicStyle(lambda: self._style)
General Comments 0
You need to be logged in to leave comments. Login now