Skip to content

Commit

Permalink
DEV2-3530: Change all commands to snake case (#1269)
Browse files Browse the repository at this point in the history
* DEV2-3530: Change all commands to snake case

* bump chatversion
  • Loading branch information
Assaf Sapir authored Aug 24, 2023
1 parent 7b95d43 commit 09fc811
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/tabnineChatWidget/ChatApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,18 +140,18 @@ export function initChatApi(
);

chatEventRegistry.registerEvent<InserCode, void>(
"insert-at-cursor",
"insert_at_cursor",
insertTextAtCursor
);
chatEventRegistry.registerEvent<
{ symbol: string },
vscode.SymbolInformation[] | undefined
>("resolve-symbols", resolveSymbols);
>("resolve_symbols", resolveSymbols);

chatEventRegistry.registerEvent<
{ symbols: vscode.SymbolInformation[] },
void
>("peek-definition", peekDefinition);
>("peek_definition", peekDefinition);

chatEventRegistry.registerEvent<ChatConversation, void>(
"update_chat_conversation",
Expand Down

0 comments on commit 09fc811

Please sign in to comment.