I use Coq 8.11 in Ubuntu with Proof-general. I write:
Ltac example1 := fail.
and succeed. Say I want to use unicode symbols:
Proof-General -> Display -> Quick Options -> Unicode Tokens
then I write again:
Ltac example2 ≔ fail.
and fail with the error:
Error: Syntax Error: Lexer: Undefined token
So I go to some editor and write the sequence ":=" and copy paste it while writing:
Ltac example3 := fail.
Happily I succeed again.
The above occurs with many symbols you can think of |-, /\, /, etc.
How can i solve it?