diff options
author | Nate Sesti <sestinj@gmail.com> | 2023-07-11 00:58:39 -0700 |
---|---|---|
committer | Nate Sesti <sestinj@gmail.com> | 2023-07-11 00:58:39 -0700 |
commit | 32faad17ed525209d51756615cddea74f905076c (patch) | |
tree | 55bba0893a6da3770462ea9db1662b0c946ee827 /continuedev | |
parent | 50adabaef68917a65b123dbf6026c410b8c5a006 (diff) | |
download | sncontinue-32faad17ed525209d51756615cddea74f905076c.tar.gz sncontinue-32faad17ed525209d51756615cddea74f905076c.tar.bz2 sncontinue-32faad17ed525209d51756615cddea74f905076c.zip |
raise error if no code selected to edit
Diffstat (limited to 'continuedev')
-rw-r--r-- | continuedev/src/continuedev/steps/main.py | 20 |
1 files changed, 3 insertions, 17 deletions
diff --git a/continuedev/src/continuedev/steps/main.py b/continuedev/src/continuedev/steps/main.py index 2a8cd250..e6ef9281 100644 --- a/continuedev/src/continuedev/steps/main.py +++ b/continuedev/src/continuedev/steps/main.py @@ -258,24 +258,10 @@ class EditHighlightedCodeStep(Step): range_in_files.append( RangeInFileWithContents.from_range_in_file(rif, "")) - # If nothing highlighted, edit the first open file + # If still no highlighted code, raise error if len(range_in_files) == 0: - # Get the full contents of all open files - files = await sdk.ide.getOpenFiles() - contents = {} - for file in files: - contents[file] = await sdk.ide.readFile(file) - - range_in_files = [RangeInFileWithContents.from_entire_file( - filepath, content) for filepath, content in contents.items()] - - # If still no highlighted code, create a new file and edit there - if len(range_in_files) == 0: - # Create a new file - new_file_path = "new_file.txt" - await sdk.add_file(new_file_path, "") - range_in_files = [ - RangeInFileWithContents.from_entire_file(new_file_path, "")] + raise ContinueCustomException( + message="Please highlight some code and try again.", title="No Code Selected") range_in_files = list(map(lambda x: RangeInFile( filepath=x.filepath, range=x.range |