Skip to content

Commit

Permalink
add/remove remaining todos
Browse files Browse the repository at this point in the history
  • Loading branch information
lukealvoeiro committed Oct 17, 2024
1 parent f876369 commit bfa4f8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/goose/cli/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@ def run(self) -> None:
save_latest_session(self.session_file_path, self.exchange.messages)

print() # Print a newline for separation.
# TODO: check time and notify on any diffed files that are currently open
# TODO: check time and notify on any diffed files that are in the opened file list.
# this is becuause the user may have edited files outside of the goose session.
user_input = self.prompt_session.get_user_input()
message = Message.user(text=user_input.text) if user_input.to_continue() else None

Expand Down
2 changes: 0 additions & 2 deletions src/goose/toolkit/language_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,6 @@ def request_references(
NotImplementedError("No language server is available.")
results = self.language_server_client.request_references(file_path, line, column)

# TODO: paginate results

if not results:
return "No definition found."

Expand Down

0 comments on commit bfa4f8b

Please sign in to comment.