diff --git a/package.json b/package.json index 665f90c8..34a1882c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "amvim", - "version": "1.20.1-pre", + "version": "1.20.1", "publisher": "auiworks", "icon": "images/icon.png", "displayName": "amVim", diff --git a/src/Actions/BlockCursor.ts b/src/Actions/BlockCursor.ts index 4566cf80..1f2f8c2f 100644 --- a/src/Actions/BlockCursor.ts +++ b/src/Actions/BlockCursor.ts @@ -13,7 +13,7 @@ export class ActionBlockCursor { // Workaround for VSCode API's bug: https://github.com/Microsoft/vscode/issues/17513 // TODO: Remove next line when the bug is fixed. - activeTextEditor.options.cursorStyle = TextEditorCursorStyle.Underline; + activeTextEditor.options.cursorStyle = TextEditorCursorStyle.Line; activeTextEditor.options.cursorStyle = TextEditorCursorStyle.Block; resovle(true);