Remove unused import

This commit is contained in:
Andrew Kingston 2024-03-12 19:07:38 +00:00
parent 80a3265c7a
commit fda71de7c2
1 changed files with 1 additions and 1 deletions

View File

@ -270,7 +270,7 @@ export const insertBinding = (view, from, to, text, mode) => {
}) })
} }
export const insertSnippet = (view, from, to, text, mode) => { export const insertSnippet = (view, from, to, text) => {
const parsedInsert = `${text}()` const parsedInsert = `${text}()`
let cursorPos = from + parsedInsert.length - 1 let cursorPos = from + parsedInsert.length - 1
view.dispatch({ view.dispatch({