Skip to content

Commit

Permalink
chore: update readme and todos
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcMcIntosh committed Feb 20, 2024
1 parent 811edc6 commit 0f80d4c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,10 +153,17 @@ interface ChatErrorStreaming extends ActionToChat {
}
/**
* Request for command completion from the lsp
* trigger will be null if the user has selected a command at that point it should be fine to send the query to the lsp
*/
interface RequestAtCommandCompletion extends ActionFromChat {
type: EVENT_NAMES_FROM_CHAT.REQUEST_AT_COMMAND_COMPLETION; // = "chat_request_at_command_completion"
payload: { id: string; query: string; cursor: number; number: number };
payload: {
id: string;
query: string;
cursor: number;
trigger: string | null;
number?: number;
};
}

/**
Expand Down
8 changes: 5 additions & 3 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,12 +104,14 @@
[x] bug with the combobox being open after asking a question
[x] file preview should scroll with textarea
[x] chat content should stay at end when textarea grows
[ ] should this be disabled if the user has scrolled away from the bottom?
[ ] should the scrolling be disabled if the user has scrolled away from the bottom?

[ ] combobox only needs one function for completion and preview
[x] combobox only needs one function for completion and preview
[x] check clicking on the combobox the second click on @@file doesn't seem to work.
[x] place the cursor at the right place when adding a command between text
[ ] use repeat to find flaky tests
[x] use repeat to find flaky tests

[x] list display in response has a large margin/padding

### EVENTS TODO FOR IDEs

Expand Down

0 comments on commit 0f80d4c

Please sign in to comment.