shanedell commented on PR #926:
URL: https://github.com/apache/daffodil-vscode/pull/926#issuecomment-1883429375

   @stricklandrbls Can you make one change. Change the code for column from:
   
   ```ts
   const column =
     vscode.window.activeTextEditor &&
     vscode.window.activeTextEditor.viewColumn
       ? vscode.window.activeTextEditor?.viewColumn
       : vscode.ViewColumn.Active
   ```
   
   To:
   
   ```ts
   const column =
     fileToEdit !== '' ? vscode.ViewColumn.Two : vscode.ViewColumn.Active
   ```
   
   This will make it so that when the data editor is open during a debug it 
will be opened to the side of the debugger and then when its opened via running 
the command palette it will be open on its own


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to