Skip to content
  1. May 13, 2023
  2. Apr 30, 2023
    • raphTec's avatar
      Handle import cycle in _have_debugger() · 9a2ebbb7
      raphTec authored and Andreas Klöckner's avatar Andreas Klöckner committed
      This function may cause an import cycle when it is called during early
      startup.
      Specifically, during import of debugger.py, the settings are loaded.
      Exceptions during load are forwarded to the logging system, where they
      are handled by TerminalOrStreamHandler. This is turn will call
      _have_debugger() to determine whether to display an UI dialog.
      The function attempts to import debugger.py, completing the import cycle.
      9a2ebbb7
  3. Apr 26, 2023
  4. Mar 13, 2023
  5. Mar 06, 2023
  6. Jan 10, 2023
  7. Jan 04, 2023
    • Aaron Meurer's avatar
      Implement jump command (#306) · be3aa5ee
      Aaron Meurer authored
      
      
      * Start implementing jump command
      
      Right now it doesn't stop on the line (like t), which would be ideal. I can't
      figure out how to make it do that. pdb's j does it, so it should be possible.
      
      It also isn't documented or heavily tested yet.
      
      See issue #129.
      
      * Fix function name that has changed
      
      * Fix the jump command
      
      We need to update the UI manually as end() will run past the current line.
      Also, setting a temporary breakpoint is unnecessary.
      
      * Fix keyboard help for jump
      
      * Fix flake8 issues
      
      Co-authored-by: default avatarAndreas Klöckner <inform@tiker.net>
      be3aa5ee
  8. Jan 03, 2023
  9. Jan 01, 2023
  10. Nov 20, 2022
  11. Nov 07, 2022
  12. Nov 03, 2022
  13. Oct 30, 2022
  14. Oct 14, 2022
  15. Oct 13, 2022
    • Aaron Meurer's avatar
      Fix the midnight theme (#508) · 845f8214
      Aaron Meurer authored
      * Revert "Remaster midnight theme for hierarchical styles"
      
      This reverts commit c7a8fbb0.
      
      * Clean up some of the colors in the midnight theme
      
      - Add some colors for some extra Python tokens
      - Make the current line easier to see
      - Add back the link() calls from the reverted c7a8fbb0 (although I'm unsure
        what they do)
      
      * Make the command line not bold in the midnight theme
      
      * Use the default text color in the midnight theme
      
      The theme claims to be best with green text, so we also use white instead of
      green for the comment color.
      
      * More cleanups to the midnight theme
      
      - Make the highlighted line always blue instead of green
      - Fix some color combinations that were hard to read
      - Be consistent about highlighted and active things in the sidebar. Active is
        bold, highlighted is blue background, disabled is gray. In the variables
        view green (and lighter green for highlighted) is used for highlighted
        variables.
      - Use lighter and darker yellow (actually brown and yellow) for the current
        line highlighted and not highlighted.
      - Make the sidebars lighter when selected
      - Make the hotkeys italics as well as underlined, since the underline is very
        hard to see
      
      Some issues:
      
      - The bold dark gray for disabled highlighted breakpoints is just showing as
        bold white. Don't know if that's a bug in my terminal or a bug in urwid, or
        if they really do just look the same.
      - The hotkey letter in the highlighted pane does not change. Should there be a
        "focused hotkey" color?
      
      * Fix flake8 issues
      
      * Make some changes to the midnight theme from the review by @mvanderkamp
      
      * Use light green as the main color for midnight instead of dark green
      
      * Color operators in dark green in the midnight theme
      
      * Some tweaks to the midnight theme based on review
      
      * Get rid of some redundant settings in the midnight theme
      845f8214
  16. Oct 03, 2022
  17. Sep 27, 2022
    • Michael van der Kamp's avatar
      Implement "--continue" CLI arg (alias "-c") (#559) · db13b83e
      Michael van der Kamp authored
      * Implement "--continue" CLI arg (alias "-c")
      
      * Rename _continue -> _continue_at_start
      
          - Use _continue_at_start__setting for attribute to differentiate
            from the existing _continue_at_start attribute
      
      * Extract _waiting_for_mainpyfile()
      
      * Add help text
      db13b83e
  18. Sep 21, 2022
  19. Sep 19, 2022
  20. Sep 05, 2022
  21. Aug 28, 2022
  22. Aug 21, 2022
  23. Aug 20, 2022
  24. Jul 31, 2022
  25. Jul 29, 2022
  26. Jul 28, 2022
  27. Jul 19, 2022
  28. Jul 14, 2022
    • Tim Gates's avatar
      docs: Fix a few typos · 8fd3d93d
      Tim Gates authored and Andreas Klöckner's avatar Andreas Klöckner committed
      There are small typos in:
      - doc/starting.rst
      - test/test_var_view.py
      
      Fixes:
      - Should read `various` rather than `variaous`.
      - Should read `utilities` rather than `utitlities`.
      - Should read `expected` rather than `extected`.
      - Should read `differently` rather than `diffrently`.
      - Should read `course` rather than `couse`.
      8fd3d93d
  29. Jul 07, 2022
  30. Jul 03, 2022
  31. Jun 17, 2022
  32. May 26, 2022