#
5f232faf |
| 04-Feb-2024 |
andvar <andvar@NetBSD.org> |
s/interrrupt/interrupt/ in comment and editline(3) man page.
|
#
81d6c9b9 |
| 15-Aug-2021 |
wiz <wiz@NetBSD.org> |
Add verb to sentence.
|
#
da69b70b |
| 15-Aug-2021 |
christos <christos@NetBSD.org> |
Disable attempts to handle EINTR and non-blocking I/O by default. It is confusing to other programs and unexpected behavior. Reported by Ingo Schwarze. This behavior is now controlled with EL_SAFEREA
Disable attempts to handle EINTR and non-blocking I/O by default. It is confusing to other programs and unexpected behavior. Reported by Ingo Schwarze. This behavior is now controlled with EL_SAFEREAD.
show more ...
|
#
18bb6ea4 |
| 18-Nov-2018 |
christos <christos@NetBSD.org> |
Remove utf-8 requirement (Yuichiro NAITO)
|
#
3e39477b |
| 02-Sep-2017 |
wiz <wiz@NetBSD.org> |
Remove trailing whitespace; convert Xr readline to Nm readline, since we won't get a readline man page in base.
|
#
27916d7c |
| 01-Sep-2017 |
christos <christos@NetBSD.org> |
PR/51517: Jay West: Tty settings not restored on exit PR/51518: Jay West: prompt is interleaved with client output
Both these issues are caused by rl_restore_handler not DTRT; fix it so that it kill
PR/51517: Jay West: Tty settings not restored on exit PR/51518: Jay West: prompt is interleaved with client output
Both these issues are caused by rl_restore_handler not DTRT; fix it so that it kills the internal libedit state completely. This is inefficient, but it works.
Also fix: 1. add append_history()/H_NSAVE_FP 2. call the rl_startup_hook before printing the first prompt as documented. callint it from rl_initialize breaks python, because the callback ends up being invoked before the readline module is installed, and we end up dereferencing a NULL pointer. 3. add el_resize_terminal.
With those changes, s/lreadline/ledit/g in python works.
show more ...
|
#
01869ca4 |
| 03-Jul-2017 |
wiz <wiz@NetBSD.org> |
Remove workaround for ancient HTML generation code.
|
#
0a321818 |
| 27-Jun-2017 |
christos <christos@NetBSD.org> |
mention the limitation of the literal sequence delimiter.
|
#
00f36e26 |
| 27-Jun-2017 |
kre <kre@NetBSD.org> |
Include EDITRC in doc.
|
#
c626d041 |
| 10-Apr-2017 |
abhinav <abhinav@NetBSD.org> |
Add missing argument for H_SET.
ok christos@
|
#
16467be6 |
| 22-May-2016 |
christos <christos@NetBSD.org> |
documentation improvements (Ingo Schwarze)
|
#
e9c2e28b |
| 21-May-2016 |
christos <christos@NetBSD.org> |
Fix the prototype used by EL_GETCFN, mention the associated typedef name, document the return values, expand the list of affected functions, warn against using EL_GETCFN, and clarify some wording and
Fix the prototype used by EL_GETCFN, mention the associated typedef name, document the return values, expand the list of affected functions, warn against using EL_GETCFN, and clarify some wording and notation. (Ingo Schwarze)
show more ...
|
#
f9ed317e |
| 09-May-2016 |
christos <christos@NetBSD.org> |
GNU readline(3) regards history chronologically, that is, from the perspective of the dawn of time, so "next" means "newer" and "previous" means "older". Libedit, by contrast, uses reverse chronolog
GNU readline(3) regards history chronologically, that is, from the perspective of the dawn of time, so "next" means "newer" and "previous" means "older". Libedit, by contrast, uses reverse chronology and regards history from the perspective of the present, such that "next" means "longer ago" and "previous" means "not so long ago".
The following patch fixes previous_history() and next_history() as proposed by Bastian Maerkisch.
But there is a related problem demonstrated by Bastian's regression tests that his patch did not fix: next_history() can advance not only to the newest entry, but beyond it, which core libedit cannot do. So that feature must be implemented locally in readline.c.
With that, the last of Bastians tests is fixed, test_movement_direction().
This patch also improves libedit documentation to more clearly state what "previous" and "next" mean. GNU readline documentation is just as unclear, but we can't easily fix that since libedit doesn't include its own readline.3 manual.
(Ingo Schwarze)
show more ...
|
#
067b3315 |
| 28-Apr-2016 |
christos <christos@NetBSD.org> |
new man page from Ingo Schwarze.
|
#
e1ae5a11 |
| 25-Feb-2016 |
wiz <wiz@NetBSD.org> |
Use \- for minus sign, use Ev, use Er.
|
#
1674f8e3 |
| 24-Feb-2016 |
christos <christos@NetBSD.org> |
Fix el_{w,}getc documentation (Ingo Schwarze)
|
#
7fc140d1 |
| 24-Feb-2016 |
christos <christos@NetBSD.org> |
Fixes from OpenBSD via Ingo Schwarze: 1) Missing comma after tok_str in NAME. OpenBSD rev. 1.38 Sep 10, 2015 (schwarze) 2) Style: void in argument list. OpenBSD rev. 1.39 Sep 14, 2015 (schwarze
Fixes from OpenBSD via Ingo Schwarze: 1) Missing comma after tok_str in NAME. OpenBSD rev. 1.38 Sep 10, 2015 (schwarze) 2) Style: void in argument list. OpenBSD rev. 1.39 Sep 14, 2015 (schwarze) 3) English punctuation: stray comma. OpenBSD rev. 1.37 Mar 13, 2015 (jmc)
show more ...
|
#
8ec26855 |
| 03-Nov-2015 |
christos <christos@NetBSD.org> |
Fix descriptions of el_set functions. Americanise initialise :-)
|
#
724c4ed0 |
| 25-Dec-2014 |
wiz <wiz@NetBSD.org> |
Bump date for previous.
|
#
eb157f70 |
| 25-Dec-2014 |
wiz <wiz@NetBSD.org> |
From Ingo Schwarze, based on changes from Kaspars Bankovskis: * Document error handling of el_init(), el_set(), el_source(), and history_init(). * Fix a typo an improve punctuation below H_SETUN
From Ingo Schwarze, based on changes from Kaspars Bankovskis: * Document error handling of el_init(), el_set(), el_source(), and history_init(). * Fix a typo an improve punctuation below H_SETUNIQUE. * The ellipsis already implies "optional", no need for []. * Sort options in editrc(5). * Prevent e.g. rom being misconstrued as the end of a sentence. * Drop a useless duplicate .Ar macro. * Put telltc in its proper place in the alphabetical order. * A few typos in vi editor command names. * Some missing vi editor command names. * Some missing author macros.
show more ...
|
#
8c54f70a |
| 11-May-2014 |
wiz <wiz@NetBSD.org> |
Add An to authors. Wording.
|
#
58ced3d7 |
| 11-May-2014 |
christos <christos@NetBSD.org> |
Add a history function that takes a FILE pointer; needed for Capsicum. From Eitan Adler
|
#
255f657e |
| 12-Jul-2013 |
christos <christos@NetBSD.org> |
Add a function to move the cursor.
|
#
40b42dfe |
| 22-Jan-2013 |
christos <christos@NetBSD.org> |
provide an el_init_fd function.
|
#
56a5e44f |
| 10-Jan-2013 |
wiz <wiz@NetBSD.org> |
In 2000, .editrc reading from $PWD was removed. Update the man page. From LEVAI Daniel via jmc@OpenBSD.
|