| /freebsd/lib/libedit/ |
| H A D | Makefile | 18 MAN= editline.3 19 MANNODEV= editrc.5 editline.7 22 editline.3 el_deletestr.3 \ 23 editline.3 el_end.3 \ 24 editline.3 el_get.3 \ 25 editline.3 el_getc.3 \ 26 editline.3 el_gets.3 \ 27 editline.3 el_init.3 \ 28 editline.3 el_init_fd.3 \ 29 editline.3 el_insertstr.3 \ [all …]
|
| /freebsd/contrib/libedit/ |
| H A D | Makefile | 22 MAN= editline.3 editrc.5 editline.7 31 editline.3 el_deletestr.3 \ 32 editline.3 el_end.3 \ 33 editline.3 el_get.3 \ 34 editline.3 el_getc.3 \ 35 editline.3 el_gets.3 \ 36 editline.3 el_init.3 \ 37 editline.3 el_init_fd.3 \ 38 editline.3 el_insertstr.3 \ 39 editline.3 el_line.3 \ [all …]
|
| H A D | el.h | 112 struct editline { struct
|
| H A D | histedit.h | 57 typedef struct editline EditLine;
|
| /freebsd/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | Editline.cpp | 933 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/contrib/llvm-project/lldb/include/lldb/Host/ |
| H A D | Editline.h | 86 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/contrib/llvm-project/lldb/source/Core/ |
| H A D | IOHandler.cpp | 269 [this](Editline *editline, StringList &lines) { in IOHandlerEditline() argument 270 return this->IsInputCompleteCallback(editline, lines); in IOHandlerEditline() 293 FixIndentationCallbackType f = [this](Editline *editline, in IOHandlerEditline() argument 296 return this->FixIndentationCallback(editline, lines, cursor_position); in IOHandlerEditline() 440 bool IOHandlerEditline::IsInputCompleteCallback(Editline *editline, in IsInputCompleteCallback() 445 int IOHandlerEditline::FixIndentationCallback(Editline *editline, in FixIndentationCallback() 438 IsInputCompleteCallback(Editline * editline,StringList & lines) IsInputCompleteCallback() argument 443 FixIndentationCallback(Editline * editline,const StringList & lines,int cursor_position) FixIndentationCallback() argument
|
| /freebsd/contrib/ntp/sntp/m4/ |
| H A D | ntp_lineeditlibs.m4 | 7 [edit,editline (readline may be specified if desired)] 10 [use_lineeditlibs="edit,editline"]
|
| /freebsd/contrib/bc/ |
| H A D | configure | 61 printf ' [--enable-editline] [--enable-readline] [--enable-internal-history] \\\n' 94 printf ' -e, --enable-editline\n' 95 printf ' Enable the use of libedit/editline. This is meant for those users that\n' 122 printf ' editline or readline. This option is ignored if history is disabled.\n' 558 hist_impl="editline" 723 e) hist_impl="editline" ;; 861 enable-editline) hist_impl="editline" ;; 879 enable-editline* | enable-readline*) 1287 if [ "$hist_impl" = "editline" ]; the [all...] |
| H A D | configure.sh | 861 enable-editline) hist_impl="editline" ;; 879 enable-editline* | enable-readline*) 1288 editline=1 1291 editline=0 1294 editline=0 1304 flags="$flags -DBC_ENABLE_EDITLINE=$editline -DBC_ENABLE_READLINE=$readline" 1332 editline=0 1342 if [ "$editline" -ne 0 ]; then
|
| H A D | build.gaml | 67 history: @editline 166 @editline
|
| H A D | NEWS.md | 10 * Improper response to double `SIGINT` with editline. 28 `editline`. 202 * A crash when `bc` and `dc` are built using editline, but history is not 328 This is a production release that fixes prompt bugs with editline and readline 331 This also fixes editline and readline output on `EOF`. 343 First, support for editline and readline history has been added. To use 344 editline, pass `-e` to `configure.sh`, and to use readline, pass `-r`.
|
| /freebsd/crypto/heimdal/ |
| H A D | FREEBSD-Xlist | 12 lib/editline
|
| /freebsd/contrib/tnftp/ |
| H A D | todo | 21 possibly install editline.3 and editrc.5
|
| H A D | ChangeLog | 884 * 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/contrib/llvm-project/lldb/source/Expression/ |
| H A D | REPL.cpp | 530 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/contrib/bc/project/ |
| H A D | issue10.md | 74 I thought it could be an editline(3) problem since some programs end up using that pretty much only… 78 Yeah, my `bc` uses a custom history implementation, so it could be mine, but not `editline(3)`.
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | IOHandler.h | 414 bool IsInputCompleteCallback(Editline *editline, StringList &lines); 416 int FixIndentationCallback(Editline *editline, const StringList &lines,
|
| /freebsd/contrib/bc/manuals/ |
| H A D | build.md | 466 History support can be provided by editline, in order to implement `vi`-like 469 To enable editline support, pass either the `-e` flag or the `--enable-editline` 474 ./configure.sh --enable-editline 481 This option is only used if it is after any other `-e`/`--enable-editline` 503 options, any `-e`/`--enable-editline` options, and any 509 dependencies. This is the default if editline and readline are not selected. 523 `-i`/`--enable-internal-history` options, any `-e`/`--enable-editline` options,
|
| /freebsd/contrib/sqlite3/autosetup/ |
| H A D | sqlite-config.tcl | 273 => {Enable BSD editline support} 1139 } elseif {[opt-bool editline]} { 1151 set editLibName editline 1260 proj-assert {$editLibName in {readline editline}} 1752 editline
|
| /freebsd/contrib/bc/scripts/ |
| H A D | release.pkg.yao | 127 help: "Whether to test with editline or not." 129 long: @editline 192 editline: !bool = false; 642 if editline && !(flags contains "H") 696 if editline && !(flags contains "-Dhistory=none") 699 cc, flags +~ @[ "-Dhistory=editline" ],
|
| /freebsd/crypto/heimdal/doc/ |
| H A D | ack.texi | 29 @code{editline} was written by Simmule Turner and Rich Salz. Heimdal
|
| /freebsd/contrib/bc/include/ |
| H A D | status.h | 121 #error Must enable only one of editline or readline, not both.
|
| /freebsd/crypto/openssh/ |
| H A D | README.md | 76 ``--with-libedit`` | Enable [libedit](https://www.thrysoee.dk/editline/) support for sftp.
|
| H A D | INSTALL | 96 http://www.thrysoee.dk/editline/
|