Skip to content

Commit

Permalink
feat: fix match syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
pomelo-nwu committed Aug 14, 2024
1 parent 2036120 commit 0f54e5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ const StepMap = {};

function generateSuggestionsForLastWord(lastWord) {
const contextSpecificSuggestions = {
g: ['V', 'E', 'match'],
V: [...edgeStep, ...common],
g: ['V', 'E'],
V: [...edgeStep, 'match', ...common],
E: [...vertexStep, ...common],
...StepMap,
};
Expand Down

0 comments on commit 0f54e5c

Please sign in to comment.