Home
last modified time | relevance | path

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

12

/freebsd-13-stable/lib/libedit/
HDMakefile23 MAN= editline.3 editrc.5 editline.7
26 editline.3 el_deletestr.3 \
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 \
32 editline.3 el_init_fd.3 \
33 editline.3 el_insertstr.3 \
34 editline.3 el_line.3 \
[all …]
/freebsd-13-stable/contrib/libedit/
HDMakefile22 MAN= editline.3 editrc.5 editline.7
25 editline.3 el_deletestr.3 \
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 \
31 editline.3 el_init_fd.3 \
32 editline.3 el_insertstr.3 \
33 editline.3 el_line.3 \
[all …]
HDel.h111 struct editline { struct
HDhistedit.h57 typedef struct editline EditLine;
/freebsd-13-stable/contrib/llvm-project/lldb/source/Host/common/
HDEditline.cpp933 Editline &editline, llvm::ArrayRef<CompletionResult::Completion> results) { in DisplayCompletions() argument
936 fprintf(editline.m_output_file, in DisplayCompletions()
949 PrintCompletion(editline.m_output_file, results, max_len); in DisplayCompletions()
958 PrintCompletion(editline.m_output_file, results.slice(cur_pos, next_size), in DisplayCompletions()
966 fprintf(editline.m_output_file, "More (Y/n/a): "); in DisplayCompletions()
973 int got_char = el_wgetc(editline.m_editline, in DisplayCompletions()
976 if (editline.m_editor_status == EditorStatus::Interrupted) { in DisplayCompletions()
977 editline.m_editor_status = EditorStatus::Editing; in DisplayCompletions()
978 fprintf(editline.m_output_file, "^C\n"); in DisplayCompletions()
982 fprintf(editline.m_output_file, "\n"); in DisplayCompletions()
[all …]
/freebsd-13-stable/contrib/sqlite3/
HDconfigure.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-13-stable/contrib/llvm-project/lldb/include/lldb/Host/
HDEditline.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-13-stable/contrib/llvm-project/lldb/source/Core/
HDIOHandler.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-13-stable/contrib/ntp/sntp/m4/
HDntp_lineeditlibs.m47 [edit,editline (readline may be specified if desired)]
10 [use_lineeditlibs="edit,editline"]
/freebsd-13-stable/crypto/heimdal/
HDFREEBSD-Xlist12 lib/editline
HDNEWS23 - Replace editline with libedit
HDChangeLog.19981958 * lib/editline/sysunix.c: sgtty-support from Luke Howard
2822 * lib: Added editline,sl,roken.
HDChangeLog.20051455 still be there, but claim that we no longer use it. Mark editline
/freebsd-13-stable/contrib/bc/
HDconfigure.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
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
HDNEWS.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-13-stable/contrib/tnftp/
HDtodo21 possibly install editline.3 and editrc.5
HDChangeLog884 * 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-13-stable/contrib/llvm-project/lldb/source/Expression/
HDREPL.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-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDIOHandler.h414 bool IsInputCompleteCallback(Editline *editline, StringList &lines);
416 int FixIndentationCallback(Editline *editline, const StringList &lines,
/freebsd-13-stable/contrib/bc/manuals/
HDbuild.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-13-stable/crypto/heimdal/doc/
HDack.texi29 @code{editline} was written by Simmule Turner and Rich Salz. Heimdal
/freebsd-13-stable/contrib/bc/include/
HDstatus.h121 #error Must enable only one of editline or readline, not both.
/freebsd-13-stable/crypto/openssh/
HDREADME.md76 ``--with-libedit`` | Enable [libedit](https://www.thrysoee.dk/editline/) support for sftp.
HDINSTALL94 http://www.thrysoee.dk/editline/

12