Skip to content

Commit

Permalink
Clean up unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
xingrz committed Mar 23, 2024
1 parent 3457104 commit f398035
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/Editor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@ const holderSize = useClientSize(holder);
watch(holderSize, () => editor?.resize());
function getCompletions(
editor: IEditor,
session: IEditSession,
pos: Position,
prefix: string,
_editor: IEditor,
_session: IEditSession,
_pos: Position,
_prefix: string,
callback: (err: Error | null, completions?: { value: string }[]) => void
): void {
callback(null, Object.keys(props.icons)
Expand Down

0 comments on commit f398035

Please sign in to comment.