@lvce-editor/editor-worker 19.22.1 → 19.23.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/editorWorkerMain.js +2 -1
- package/package.json +1 -1
package/dist/editorWorkerMain.js
CHANGED
|
@@ -11033,8 +11033,9 @@ const getEditorSourceActions = async editorId => {
|
|
|
11033
11033
|
const {
|
|
11034
11034
|
newState
|
|
11035
11035
|
} = get$7(editorId);
|
|
11036
|
+
const offset = getOffsetAtCursor$1(newState);
|
|
11036
11037
|
return execute({
|
|
11037
|
-
args: [],
|
|
11038
|
+
args: [offset],
|
|
11038
11039
|
editor: newState,
|
|
11039
11040
|
event: 'onLanguage',
|
|
11040
11041
|
method: 'ExtensionHostCodeActions.getSourceActions'
|