You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i am trying to make a remix plugin. i have a line number and column number so i can navigate that to the respective editor line.
there is method called "gotoLine" which is available at editor API . But it is not clearly defined.
but i used await.call("editor" , "gotolLne", position); but it shows gotoLine method is not defined.
pleases help me on this issue. if gotoLine is not working ....is there any other method for navigation?
The text was updated successfully, but these errors were encountered:
import{createClient}from'@remixproject/plugin-iframe';// or use "@remixproject/plugin-webview"constmain=async(row: number,col:number)=>{constclient=createClient();awaitclient.onload();awaitclient.call('editor','gotoLine',row,col);}
i am trying to make a remix plugin. i have a line number and column number so i can navigate that to the respective editor line.
there is method called "gotoLine" which is available at editor API . But it is not clearly defined.
but i used await.call("editor" , "gotolLne", position); but it shows gotoLine method is not defined.
pleases help me on this issue. if gotoLine is not working ....is there any other method for navigation?
The text was updated successfully, but these errors were encountered: