Sublime Forum

Circumflex Accent ^ vs ˆ

#1

Dear all,

How can I tell Sublime Text 2 under OS X Lion, to use the classic ‘ASCII’ cifcumflex accent ^ instead of the unicode one ˆ. There is difference between them, and I need the ASCII one for programming. Or is it an OS X setting?

Please see attachment. Thank you in advance!

0 Likes

#2

Hi all,

Still no solution for this one? :frowning:

Regards

0 Likes

#3

In the python console type sublime.log_input(True) and you’ll see what information ST2 gets.

If it gets the unicode version, you could just create a keybinding for it to input the classic instead.

{ "keys": "ˆ"], "command": "insert", "args": {"characters": "^"} },
0 Likes