From mboxrd@z Thu Jan 1 00:00:00 1970 From: ST Subject: Use Emacs' default value of "bidi-paragraph-direction" in orgmode Date: Fri, 15 Jun 2018 13:32:17 +0300 Message-ID: <1529058737.1901.36.camel@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:60591) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fTm1p-0005JP-5D for Emacs-orgmode@gnu.org; Fri, 15 Jun 2018 06:32:26 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fTm1m-0002TY-4g for Emacs-orgmode@gnu.org; Fri, 15 Jun 2018 06:32:25 -0400 Received: from mail-wm0-x229.google.com ([2a00:1450:400c:c09::229]:34723) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fTm1l-0002SB-UF for Emacs-orgmode@gnu.org; Fri, 15 Jun 2018 06:32:22 -0400 Received: by mail-wm0-x229.google.com with SMTP id l15-v6so6251853wmc.1 for ; Fri, 15 Jun 2018 03:32:21 -0700 (PDT) Received: from debox ([37.26.149.242]) by smtp.gmail.com with ESMTPSA id b80-v6sm1529807wmf.2.2018.06.15.03.32.19 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 15 Jun 2018 03:32:20 -0700 (PDT) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Emacs-orgmode@gnu.org Hello, Please leave the Emacs' default value of "bidi-paragraph-direction" which is "nil" in orgmode as well. Right now orgmode seems to force "left-to-right", thus blocking "right-to-left". With "nil" it is dynamic, which means both directions work well out-of-the box. Right now I'm forced to add this to my config: (add-hook 'org-mode-hook (lambda () (setq bidi-paragraph-direction nil))) It took me a lot of time to figure out, which makes the first Org steps for RTL-newbies quite frustrating... Please, let me know if you decide to fix this in the upcoming versions. Thank you!