unofficial mirror of help-gnu-emacs@gnu.org
 help / color / mirror / Atom feed
* Is the so-long package still needed currently?
@ 2023-04-26 10:47 Hongyi Zhao
  2023-04-26 11:03 ` Eli Zaretskii
  0 siblings, 1 reply; 5+ messages in thread
From: Hongyi Zhao @ 2023-04-26 10:47 UTC (permalink / raw)
  To: help-gnu-emacs

Hi here,

A long time ago, I've added the following configuration in my init.el file:

```
;; https://lists.gnu.org/archive/html/help-gnu-emacs/2022-03/msg00511.html
;; https://mail.google.com/mail/u/0/?ogbl#inbox/FMfcgzGpFqRpjCqNNHSgDgkqmXWwtLrS
(use-package so-long
  :config
  (setq-default so-long-action 'longlines-mode)
  (setq-default longlines-show-hard-newlines t)
  (global-so-long-mode +1)
  )
```

But I'm not sure whether the feature in Emacs by default has already
capable to do all the works currently. Any tips will be appreciated.

Regards,
Zhao
-- 
Assoc. Prof. Hongsheng Zhao <hongyi.zhao@gmail.com>
Theory and Simulation of Materials
Hebei Vocational University of Technology and Engineering
No. 473, Quannan West Street, Xindu District, Xingtai, Hebei province



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Is the so-long package still needed currently?
  2023-04-26 10:47 Is the so-long package still needed currently? Hongyi Zhao
@ 2023-04-26 11:03 ` Eli Zaretskii
  2023-04-26 11:16   ` Hongyi Zhao
  0 siblings, 1 reply; 5+ messages in thread
From: Eli Zaretskii @ 2023-04-26 11:03 UTC (permalink / raw)
  To: help-gnu-emacs

> From: Hongyi Zhao <hongyi.zhao@gmail.com>
> Date: Wed, 26 Apr 2023 18:47:51 +0800
> 
> Hi here,
> 
> A long time ago, I've added the following configuration in my init.el file:
> 
> ```
> ;; https://lists.gnu.org/archive/html/help-gnu-emacs/2022-03/msg00511.html
> ;; https://mail.google.com/mail/u/0/?ogbl#inbox/FMfcgzGpFqRpjCqNNHSgDgkqmXWwtLrS
> (use-package so-long
>   :config
>   (setq-default so-long-action 'longlines-mode)
>   (setq-default longlines-show-hard-newlines t)
>   (global-so-long-mode +1)
>   )
> ```
> 
> But I'm not sure whether the feature in Emacs by default has already
> capable to do all the works currently. Any tips will be appreciated.

Emacs 29 is supposed to fix the problem with very long lines, but
Emacs 29 was not yet released, and so we don't yet have enough data
points to decide that so-long-mode is no longer necessary.

IOW, "the jury is still out" on this issue.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Is the so-long package still needed currently?
  2023-04-26 11:03 ` Eli Zaretskii
@ 2023-04-26 11:16   ` Hongyi Zhao
  2023-04-26 11:24     ` Eli Zaretskii
  2023-04-26 11:26     ` Thibaut Verron
  0 siblings, 2 replies; 5+ messages in thread
From: Hongyi Zhao @ 2023-04-26 11:16 UTC (permalink / raw)
  To: Eli Zaretskii; +Cc: help-gnu-emacs

On Wed, Apr 26, 2023 at 7:04 PM Eli Zaretskii <eliz@gnu.org> wrote:
>
> > From: Hongyi Zhao <hongyi.zhao@gmail.com>
> > Date: Wed, 26 Apr 2023 18:47:51 +0800
> >
> > Hi here,
> >
> > A long time ago, I've added the following configuration in my init.el file:
> >
> > ```
> > ;; https://lists.gnu.org/archive/html/help-gnu-emacs/2022-03/msg00511.html
> > ;; https://mail.google.com/mail/u/0/?ogbl#inbox/FMfcgzGpFqRpjCqNNHSgDgkqmXWwtLrS
> > (use-package so-long
> >   :config
> >   (setq-default so-long-action 'longlines-mode)
> >   (setq-default longlines-show-hard-newlines t)
> >   (global-so-long-mode +1)
> >   )
> > ```
> >
> > But I'm not sure whether the feature in Emacs by default has already
> > capable to do all the works currently. Any tips will be appreciated.
>
> Emacs 29 is supposed to fix the problem with very long lines, but
> Emacs 29 was not yet released, and so we don't yet have enough data
> points to decide that so-long-mode is no longer necessary.

I use the lasted git master version of Emacs:

GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.34,
 cairo version 1.16.0) of 2023-01-24

> IOW, "the jury is still out" on this issue.

Then, what about my situation?

Regards,
Zhao



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Is the so-long package still needed currently?
  2023-04-26 11:16   ` Hongyi Zhao
@ 2023-04-26 11:24     ` Eli Zaretskii
  2023-04-26 11:26     ` Thibaut Verron
  1 sibling, 0 replies; 5+ messages in thread
From: Eli Zaretskii @ 2023-04-26 11:24 UTC (permalink / raw)
  To: help-gnu-emacs

> From: Hongyi Zhao <hongyi.zhao@gmail.com>
> Date: Wed, 26 Apr 2023 19:16:41 +0800
> Cc: help-gnu-emacs@gnu.org
> 
> On Wed, Apr 26, 2023 at 7:04 PM Eli Zaretskii <eliz@gnu.org> wrote:
> >
> > > But I'm not sure whether the feature in Emacs by default has already
> > > capable to do all the works currently. Any tips will be appreciated.
> >
> > Emacs 29 is supposed to fix the problem with very long lines, but
> > Emacs 29 was not yet released, and so we don't yet have enough data
> > points to decide that so-long-mode is no longer necessary.
> 
> I use the lasted git master version of Emacs:
> 
> GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.34,
>  cairo version 1.16.0) of 2023-01-24
> 
> > IOW, "the jury is still out" on this issue.
> 
> Then, what about my situation?

As I said: we don't yet know the answer.  You can try not using
so-long-mode, but I don't have any specific recommendation for you
yet.  It is up to you.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: Is the so-long package still needed currently?
  2023-04-26 11:16   ` Hongyi Zhao
  2023-04-26 11:24     ` Eli Zaretskii
@ 2023-04-26 11:26     ` Thibaut Verron
  1 sibling, 0 replies; 5+ messages in thread
From: Thibaut Verron @ 2023-04-26 11:26 UTC (permalink / raw)
  To: Hongyi Zhao, Eli Zaretskii; +Cc: help-gnu-emacs

On 26/04/2023 13:16, Hongyi Zhao wrote:
> On Wed, Apr 26, 2023 at 7:04 PM Eli Zaretskii <eliz@gnu.org> wrote:
>>> From: Hongyi Zhao <hongyi.zhao@gmail.com>
>>> Date: Wed, 26 Apr 2023 18:47:51 +0800
>>>
>>> Hi here,
>>>
>>> A long time ago, I've added the following configuration in my init.el file:
>>>
>>> ```
>>> ;; https://lists.gnu.org/archive/html/help-gnu-emacs/2022-03/msg00511.html
>>> ;; https://mail.google.com/mail/u/0/?ogbl#inbox/FMfcgzGpFqRpjCqNNHSgDgkqmXWwtLrS
>>> (use-package so-long
>>>    :config
>>>    (setq-default so-long-action 'longlines-mode)
>>>    (setq-default longlines-show-hard-newlines t)
>>>    (global-so-long-mode +1)
>>>    )
>>> ```
>>>
>>> But I'm not sure whether the feature in Emacs by default has already
>>> capable to do all the works currently. Any tips will be appreciated.
>> Emacs 29 is supposed to fix the problem with very long lines, but
>> Emacs 29 was not yet released, and so we don't yet have enough data
>> points to decide that so-long-mode is no longer necessary.
> I use the lasted git master version of Emacs:
>
> GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.34,
>   cairo version 1.16.0) of 2023-01-24
>
>> IOW, "the jury is still out" on this issue.
> Then, what about my situation?

Why would the answer be any different? :)

If you want to help, you can always disable the so-long package and see 
if the built-in fix is enough for you.

Best wishes,

Thibaut




^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-04-26 11:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-04-26 10:47 Is the so-long package still needed currently? Hongyi Zhao
2023-04-26 11:03 ` Eli Zaretskii
2023-04-26 11:16   ` Hongyi Zhao
2023-04-26 11:24     ` Eli Zaretskii
2023-04-26 11:26     ` Thibaut Verron

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).