Skip to content
This repository was archived by the owner on Jan 27, 2023. It is now read-only.

Commit e39a88f

Browse files
Fix for missing last line in results view
1 parent 6f6463f commit e39a88f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

search_in_project.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ def list_in_view(self):
8686
view = sublime.active_window().new_file()
8787
view.run_command('search_in_project_results',
8888
{'query': self.last_search_string,
89-
'results': self.results[0:-1], # last result is "list in view"
89+
'results': self.results,
9090
'common_path': self.common_path.replace('\"', '')})
9191

9292
def search_folders(self):

0 commit comments

Comments
 (0)