Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

watch: add support for running delve while watching #165

Merged
merged 4 commits into from
Nov 28, 2020

Commits on Nov 21, 2020

  1. Configuration menu
    Copy the full SHA
    a6916e7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3ab60fc View commit details
    Browse the repository at this point in the history
  3. watch: move lastPath storage to handler

    This commit fixes a bug where attempting to redo after a debug run would run tests in the wrong
    package.
    
    The problem was that debug would create a test binary in the working directory. The creation of
    that file would trigger an event. The event wouldn't be handled, but it still caused
    prevPath to be updated.
    
    By moving the storage of the lastPath to handler it removes the need for the Save method on
    redoHandler, and keeps the tracking of the previous run details (last time.Time) together.
    dnephin committed Nov 21, 2020
    Configuration menu
    Copy the full SHA
    f3e8321 View commit details
    Browse the repository at this point in the history

Commits on Nov 22, 2020

  1. Configuration menu
    Copy the full SHA
    7b1a76c View commit details
    Browse the repository at this point in the history