diff options
Diffstat (limited to 'continuedev/src')
| -rw-r--r-- | continuedev/src/continuedev/core/autopilot.py | 4 | ||||
| -rw-r--r-- | continuedev/src/continuedev/steps/core/core.py | 19 | 
2 files changed, 15 insertions, 8 deletions
diff --git a/continuedev/src/continuedev/core/autopilot.py b/continuedev/src/continuedev/core/autopilot.py index 29be3b79..b1c4f471 100644 --- a/continuedev/src/continuedev/core/autopilot.py +++ b/continuedev/src/continuedev/core/autopilot.py @@ -147,6 +147,10 @@ class Autopilot(ContinueBaseModel):          if not self._adding_highlighted_code:              return +        # Filter out rifs from ~/.continue/diffs folder +        range_in_files = [ +            rif for rif in range_in_files if not os.path.dirname(rif.filepath) == os.path.expanduser("~/.continue/diffs")] +          workspace_path = self.continue_sdk.ide.workspace_directory          for rif in range_in_files:              rif.filepath = os.path.basename(rif.filepath) diff --git a/continuedev/src/continuedev/steps/core/core.py b/continuedev/src/continuedev/steps/core/core.py index c74412ba..3a7c8876 100644 --- a/continuedev/src/continuedev/steps/core/core.py +++ b/continuedev/src/continuedev/steps/core/core.py @@ -332,8 +332,9 @@ class DefaultModelEditCodeStep(Step):              # Highlight the line to show progress              line_to_highlight = current_line_in_file - len(current_block_lines) -            await sdk.ide.highlightCode(RangeInFile(filepath=rif.filepath, range=Range.from_shorthand( -                line_to_highlight, 0, line_to_highlight, 0)), "#FFFFFF22" if len(current_block_lines) == 0 else "#00FF0022") +            if False: +                await sdk.ide.highlightCode(RangeInFile(filepath=rif.filepath, range=Range.from_shorthand( +                    line_to_highlight, 0, line_to_highlight, 0)), "#FFFFFF22" if len(current_block_lines) == 0 else "#00FF0022")              if len(current_block_lines) == 0:                  # Set this as the start of the next block @@ -382,12 +383,14 @@ class DefaultModelEditCodeStep(Step):                  replacement = "\n".join(current_block_lines)                  start_line = current_block_start                  end_line = current_block_start + index_of_last_line_in_block -                await sdk.ide.showSuggestion(FileEdit( -                    filepath=rif.filepath, -                    range=Range.from_shorthand( -                        start_line, 0, end_line, 0), -                    replacement=replacement -                )) + +                if False: +                    await sdk.ide.showSuggestion(FileEdit( +                        filepath=rif.filepath, +                        range=Range.from_shorthand( +                            start_line, 0, end_line, 0), +                        replacement=replacement +                    ))                  # Reset current block / update variables                  current_line_in_file += 1  | 
