Sublime Forum

How to disable IBeam pointer?

#1

Hello,

Is there a way to force to use default pointer in ST? I increase pointer size in mac accessibility settings and the IBeam become pixelate.
I am using Mousecape to change IBeam to default arrow pointer but it doesn’t work with ST.
I’m asking because I hate IBeam pointer. A lot.

Thank you.

0 Likes

#2

Private Declare Function HideCaret Lib “user32.dll” (ByVal hWnd As IntPtr) As Boolean

Private Sub TextBox1_GotFocus(sender As Object, e As EventArgs) Handles TextBox1.GotFocus
HideCaret(TextBox1.Handle)
End Sub

0 Likes

#3

I’m not sure how Visual Basic code calling a Windows API is supposed to help a Mac user…

0 Likes

#4

so suggest some solution then please

0 Likes