Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Copy and Paste String (Persian, Arabic) in PHPStorm is Wrong

Copy and Paste String (Persian, Arabic) in PHPStorm is Wrong

my string is: به نام خداوند بخشنده مهربان

Describe In image:

Text when pasted

How can this problem be solved?

like image 992
user3770797 Avatar asked Sep 15 '14 15:09

user3770797


1 Answers

In the install directory, in the file bin/idea.properties, add one of the following:

  • editor.new.rendering=true
    Use the new rendering engine which has rtl support. This is default since PhpStorm 2016.1.
  • editor.disable.rtl=true
    This is only a workaround: characters will simply appear left-to-right instead.
like image 198
Sygmoral Avatar answered Oct 11 '22 04:10

Sygmoral