tsdmrfth / baba-flow

Git Flow extension for Visual Studio Code.
https://marketplace.visualstudio.com/items?itemName=Fatih.baba-flow#overview
5 stars 0 forks source link

Git Flow: init #14

Open cbiale opened 4 years ago

cbiale commented 4 years ago

OS: Linux Lite git: 2.25.1 gitflow: 1.12.3 (AVH Edition) VSCode: 1.47.3

When execute Git Flow: init, raise the error: "terminal.onDidWriteDate is not a function".

enesccinar commented 3 years ago

I had the same issue. terminal.onDidWrite() function is deprecated and has moved to the global functions.

https://github.com/microsoft/vscode/pull/80836

It needs to be changed as vscode.window.onDidWriteTerminalData(). However, the new function is still in the proposed API version but It can be used.

If you want to use this extension, you may install the insider version and follow the steps from this article. https://code.visualstudio.com/api/advanced-topics/using-proposed-api

After the establishing the proposed API, you need to change terminal.onDidWrite with vscode.window.onDidWriteTerminalData.

OS: Linux Lite git: 2.25.1 gitflow: 1.12.3 (AVH Edition) VSCode: 1.47.3

When execute Git Flow: init, raise the error: "terminal.onDidWriteDate is not a function".