Home
last modified time | relevance | path

Searched refs:editline (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-14.2/lib/libedit/
H A DMakefile23 MAN= editline.3 editrc.5 editline.7
27 editline.3 el_end.3 \
28 editline.3 el_get.3 \
29 editline.3 el_getc.3 \
30 editline.3 el_gets.3 \
31 editline.3 el_init.3 \
34 editline.3 el_line.3 \
36 editline.3 el_push.3 \
39 editline.3 el_set.3 \
41 editline.3 history.3 \
[all …]
/freebsd-14.2/contrib/libedit/
H A DMakefile22 MAN= editline.3 editrc.5 editline.7
26 editline.3 el_end.3 \
27 editline.3 el_get.3 \
28 editline.3 el_getc.3 \
29 editline.3 el_gets.3 \
30 editline.3 el_init.3 \
33 editline.3 el_line.3 \
35 editline.3 el_push.3 \
38 editline.3 el_set.3 \
40 editline.3 history.3 \
[all …]
H A Del.h111 struct editline { struct
H A Dhistedit.h57 typedef struct editline EditLine;
/freebsd-14.2/contrib/llvm-project/lldb/source/Host/common/
H A DEditline.cpp950 fprintf(editline.m_output_file, in DisplayCompletions()
1183 [](EditLine *editline, int ch) { in ConfigureEditor() argument
1190 [](EditLine *editline, int ch) { in ConfigureEditor() argument
1196 [](EditLine *editline, int ch) { in ConfigureEditor() argument
1202 [](EditLine *editline, int ch) { in ConfigureEditor() argument
1208 [](EditLine *editline, int ch) { in ConfigureEditor() argument
1219 [](EditLine *editline, int ch) { in ConfigureEditor() argument
1225 [](EditLine *editline, int ch) { in ConfigureEditor() argument
1231 [](EditLine *editline, int ch) { in ConfigureEditor() argument
1237 [](EditLine *editline, int ch) { in ConfigureEditor() argument
[all …]
/freebsd-14.2/contrib/sqlite3/
H A Dconfigure.ac7 # --enable-editline
38 # --enable-editline
42 # still enabled, the script searches for editline first and automatically
44 # user must pass "--disable-editline". To disable command line editing
45 # support altogether, "--disable-editline --disable-readline".
51 AC_ARG_ENABLE(editline, [AS_HELP_STRING([--enable-editline],[use BSD libedit])]) optenable
55 AC_CHECK_HEADERS([editline/readline.h],[
59 AC_DEFINE([HAVE_EDITLINE],1,Define to use BSD editline)
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Host/
H A DEditline.h86 using EditlineGetCharCallbackType = int (*)(::EditLine *editline,
88 using EditlineCommandCallbackType = unsigned char (*)(::EditLine *editline,
90 using EditlinePromptCallbackType = const char *(*)(::EditLine *editline);
164 static Editline *InstanceFor(::EditLine *editline);
167 DisplayCompletions(Editline &editline,
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DIOHandler.cpp269 [this](Editline *editline, StringList &lines) { in IOHandlerEditline() argument
270 return this->IsInputCompleteCallback(editline, lines); in IOHandlerEditline()
293 FixIndentationCallbackType f = [this](Editline *editline, in IOHandlerEditline()
296 return this->FixIndentationCallback(editline, lines, cursor_position); in IOHandlerEditline()
440 bool IOHandlerEditline::IsInputCompleteCallback(Editline *editline, in IsInputCompleteCallback() argument
445 int IOHandlerEditline::FixIndentationCallback(Editline *editline, in FixIndentationCallback() argument
/freebsd-14.2/contrib/ntp/sntp/m4/
H A Dntp_lineeditlibs.m47 [edit,editline (readline may be specified if desired)]
10 [use_lineeditlibs="edit,editline"]
/freebsd-14.2/crypto/heimdal/
H A DFREEBSD-Xlist12 lib/editline
H A DNEWS23 - Replace editline with libedit
H A DChangeLog.19981958 * lib/editline/sysunix.c: sgtty-support from Luke Howard
2822 * lib: Added editline,sl,roken.
H A DChangeLog.20051455 still be there, but claim that we no longer use it. Mark editline
/freebsd-14.2/contrib/bc/
H A Dconfigure.sh1077 enable-editline) hist_impl="editline" ;;
1102 enable-editline* | enable-readline*)
1626 editline=1
1629 editline=0
1632 editline=0
1642 flags="$flags -DBC_ENABLE_EDITLINE=$editline -DBC_ENABLE_READLINE=$readline"
1670 editline=0
1684 if [ "$editline" -eq 0 ] && [ "$readline" -eq 0 ]; then
1696 if [ "$editline" -ne 0 ]; then
H A Dconfigure1077 enable-editline) hist_impl="editline" ;;
1102 enable-editline* | enable-readline*)
1626 editline=1
1629 editline=0
1632 editline=0
1642 flags="$flags -DBC_ENABLE_EDITLINE=$editline -DBC_ENABLE_READLINE=$readline"
1670 editline=0
1684 if [ "$editline" -eq 0 ] && [ "$readline" -eq 0 ]; then
1696 if [ "$editline" -ne 0 ]; then
H A DNEWS.md6 `editline`.
180 * A crash when `bc` and `dc` are built using editline, but history is not
306 This is a production release that fixes prompt bugs with editline and readline
309 This also fixes editline and readline output on `EOF`.
321 First, support for editline and readline history has been added. To use
322 editline, pass `-e` to `configure.sh`, and to use readline, pass `-r`.
/freebsd-14.2/contrib/tnftp/
H A Dtodo21 possibly install editline.3 and editrc.5
H A DChangeLog884 * update editline from NetBSD 20000915 -> NetBSD 20010413
885 - Enlarge editline buffers as needed to support arbitrary
1383 that use editline.
1462 depends on EL_RPROMPT support i added to editline(3).
1613 * libedit: don't bother generating & compiling editline.c, since
1638 * fix --enable-editline
1649 editline's handler
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DREPL.cpp530 IOHandlerEditline &editline = static_cast<IOHandlerEditline &>(io_handler); in IOHandlerComplete() local
531 StringList current_lines = editline.GetCurrentLines(); in IOHandlerComplete()
532 const uint32_t current_line_idx = editline.GetCurrentLineIndex(); in IOHandlerComplete()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DIOHandler.h414 bool IsInputCompleteCallback(Editline *editline, StringList &lines);
416 int FixIndentationCallback(Editline *editline, const StringList &lines,
/freebsd-14.2/contrib/bc/manuals/
H A Dbuild.md463 History support can be provided by editline, in order to implement `vi`-like
466 To enable editline support, pass either the `-e` flag or the `--enable-editline`
471 ./configure.sh --enable-editline
478 This option is only used if it is after any other `-e`/`--enable-editline`
500 options, any `-e`/`--enable-editline` options, and any
506 dependencies. This is the default if editline and readline are not selected.
520 `-i`/`--enable-internal-history` options, any `-e`/`--enable-editline` options,
/freebsd-14.2/crypto/heimdal/doc/
H A Dack.texi29 @code{editline} was written by Simmule Turner and Rich Salz. Heimdal
/freebsd-14.2/contrib/bc/include/
H A Dstatus.h121 #error Must enable only one of editline or readline, not both.
/freebsd-14.2/crypto/openssh/
H A DREADME.md76 ``--with-libedit`` | Enable [libedit](https://www.thrysoee.dk/editline/) support for sftp.
H A DINSTALL94 http://www.thrysoee.dk/editline/

12