dennisog / julia-shell-mode

Emacs major mode for an interactive Julia shell.
GNU General Public License v2.0
42 stars 10 forks source link

issues with unicode math symbols #13

Open fredRos opened 7 years ago

fredRos commented 7 years ago

I tried to follow the example in the readme with julia 0.5.0, emacs 24.4.1 on debian jessie and julia-shell-mode 20161125.1110 installed via melpa

julia> y + Δ

if I hit enter after completing \Delta, I just got a new line but it is not sent to julia. I need to type in some more characters like so

julia> y + Δ

as
ERROR: UndefVarError: y not defined

Similarly I can't assign properly either

julia> α = 0.1
ERROR: syntax: unexpected "="

when I literally copy over the assignment to a proper julia REPL, it works as desired.

Any ideas what is wrong?