From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mp1 ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by ms11 with LMTPS id +DdaAs/PYF9mMwAA0tVLHw (envelope-from ) for ; Tue, 15 Sep 2020 14:29:35 +0000 Received: from aspmx1.migadu.com ([2001:41d0:2:4a6f::]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) by mp1 with LMTPS id mHsxOM7PYF+/PQAAbx9fmQ (envelope-from ) for ; Tue, 15 Sep 2020 14:29:34 +0000 Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by aspmx1.migadu.com (Postfix) with ESMTPS id 5B64794053F for ; Tue, 15 Sep 2020 14:29:34 +0000 (UTC) Received: from localhost ([::1]:42552 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kIBxb-0003BL-Qt for larch@yhetil.org; Tue, 15 Sep 2020 10:29:31 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:57458) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kIBxF-00038F-LR for emacs-orgmode@gnu.org; Tue, 15 Sep 2020 10:29:09 -0400 Received: from basilikum.nobis-admin.de ([89.238.71.130]:59568) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kIBxD-0001qp-9B for emacs-orgmode@gnu.org; Tue, 15 Sep 2020 10:29:09 -0400 Received: from bohne (p200300cd6736d30004f52f08df3359e3.dip0.t-ipconnect.de [IPv6:2003:cd:6736:d300:4f5:2f08:df33:59e3]) by basilikum.nobis-admin.de (Postfix) with ESMTPSA id 22FAE6D81403 for ; Tue, 15 Sep 2020 16:29:02 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=snobis.de; s=default; t=1600180142; bh=fcuuPk1mPnL8UD/Ul+cY8v4S4zHF42tl/tGa062EZTg=; h=From:To:Subject:References:Date:From; b=NNCGiNMZb5NIowzBcbja8UxAyKonZ4wradt7ktdI0XnnfzwvW0rM7fcWq01yAEfVH wj/cUSk9UFDB9E8P9JbhqM+GjLgUuy+4KKFAN6RTDFuMpmkWnsvY6wiN0smcjs8Tsi SG82zjIcNDJCXXBwsZZ30Ag0H8897TOxOcrTWBj8= From: Stefan Nobis To: emacs-orgmode@gnu.org Subject: Re: "text mode" org mode References: <878sdbw7h6.fsf@ebih.ebihd> Mail-Followup-To: emacs-orgmode@gnu.org Date: Tue, 15 Sep 2020 16:29:01 +0200 Message-ID: User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (darwin) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=89.238.71.130; envelope-from=stefan-ml@snobis.de; helo=basilikum.nobis-admin.de X-detected-operating-system: by eggs.gnu.org: First seen = 2020/09/15 10:29:02 X-ACL-Warn: Detected OS = Linux 2.2.x-3.x [generic] [fuzzy] X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-orgmode@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+larch=yhetil.org@gnu.org Sender: "Emacs-orgmode" X-Scanner: scn0 Authentication-Results: aspmx1.migadu.com; dkim=pass header.d=snobis.de header.s=default header.b=NNCGiNMZ; dmarc=pass (policy=reject) header.from=snobis.de; spf=pass (aspmx1.migadu.com: domain of emacs-orgmode-bounces@gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=emacs-orgmode-bounces@gnu.org X-Spam-Score: -1.71 X-TUID: KdvB6yV0dzlN Emanuel Berg via "General discussions about Org-mode." writes: > Can I tell Org mode to don't change editing back and > forth, also don't collapse items in and out, i.e. > virtually text mode I did not test it to every detail, but the following two settings may be a good starting point: #+begin_src elisp (setq org-startup-folded 'showeverything) (setq org-link-descriptive nil) #+end_src Also have a look at all the ~org-toggle-*~ commands like ~org-toggle-link-display~ and ~org-toggle-pretty-entities~ (the source of these commands should reveal the associated variable that can be set globally to the desired start value). -- Until the next mail..., Stefan.