From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: jonetsu Newsgroups: gmane.emacs.help Subject: Full word wrap for the compilation window ? Date: Mon, 25 Mar 2019 10:37:25 -0400 Message-ID: <20190325103725.26f51435@mistral> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="182222"; mail-complaints-to="usenet@blaine.gmane.org" To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 25 15:37:50 2019 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:256) (Exim 4.89) (envelope-from ) id 1h8QjW-000lDe-0v for geh-help-gnu-emacs@m.gmane.org; Mon, 25 Mar 2019 15:37:50 +0100 Original-Received: from localhost ([127.0.0.1]:43510 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8QjU-0004RM-Ue for geh-help-gnu-emacs@m.gmane.org; Mon, 25 Mar 2019 10:37:48 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:44699) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8QjA-0004PZ-VD for help-gnu-emacs@gnu.org; Mon, 25 Mar 2019 10:37:29 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h8Qj9-0004x4-Ss for help-gnu-emacs@gnu.org; Mon, 25 Mar 2019 10:37:28 -0400 Original-Received: from pmta31.teksavvy.com ([76.10.157.38]:42881) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1h8Qj9-0004wB-La for help-gnu-emacs@gnu.org; Mon, 25 Mar 2019 10:37:27 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: =?us-ascii?q?A2EOXQAR55hc/0Tb1BhkGgEBAQEBHwIBA?= =?us-ascii?q?QEBAwEBAQGBToEpZoFEFRKNMI0FAY4OEYtgIhgBhDoEhRYjOBIBAQMBAQEIAQM?= =?us-ascii?q?CAgJpKIYMHDsMGDQqhU+vZ4ooIoENAQEBAQEBAQGLQYE/QIN1hX2FFAOReYZcj?= =?us-ascii?q?EEJggGBP49tJQyBZokgiGygUiKBVnAVgyiBXgGPByaBMQEGAQEBFQgTBQUBAY5?= =?us-ascii?q?fAQE?= X-IPAS-Result: =?us-ascii?q?A2EOXQAR55hc/0Tb1BhkGgEBAQEBHwIBAQEBAwEBAQGBToE?= =?us-ascii?q?pZoFEFRKNMI0FAY4OEYtgIhgBhDoEhRYjOBIBAQMBAQEIAQMCAgJpKIYMHDsMG?= =?us-ascii?q?DQqhU+vZ4ooIoENAQEBAQEBAQGLQYE/QIN1hX2FFAOReYZcjEEJggGBP49tJQy?= =?us-ascii?q?BZokgiGygUiKBVnAVgyiBXgGPByaBMQEGAQEBFQgTBQUBAY5fAQE?= X-IronPort-AV: E=Sophos;i="5.60,269,1549947600"; d="scan'208";a="88801636" Original-Received: from 24-212-219-68.cable.teksavvy.com (HELO mistral) ([24.212.219.68]) by smtp.teksavvy.com with ESMTP; 25 Mar 2019 10:37:26 -0400 X-Mailer: Claws Mail 3.16.0 (GTK+ 2.24.32; x86_64-pc-linux-gnu) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 76.10.157.38 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:119736 Archived-At: I've enabled line wrap in the compilation results window but it line-wraps at the character level, showing those little arrows in the margins at each end. Is it possible to have a full word-based line wrap ? What I do so far is: (defun my-compilation-mode-hook () (setq truncate-lines nil) ;; automatically becomes buffer local (set (make-local-variable 'truncate-partial-width-windows) nil)) (add-hook 'compilation-mode-hook 'my-compilation-mode-hook) Thanks.