diff options
Diffstat (limited to 'lib/libedit')
-rw-r--r-- | lib/libedit/common.h | 39 | ||||
-rw-r--r-- | lib/libedit/editline.c | 22 | ||||
-rw-r--r-- | lib/libedit/emacs.h | 24 | ||||
-rw-r--r-- | lib/libedit/fcns.c | 58 | ||||
-rw-r--r-- | lib/libedit/fcns.h | 109 | ||||
-rw-r--r-- | lib/libedit/help.c | 212 | ||||
-rw-r--r-- | lib/libedit/help.h | 5 | ||||
-rw-r--r-- | lib/libedit/vi.h | 51 |
8 files changed, 0 insertions, 520 deletions
diff --git a/lib/libedit/common.h b/lib/libedit/common.h deleted file mode 100644 index 231b1e24f72..00000000000 --- a/lib/libedit/common.h +++ /dev/null @@ -1,39 +0,0 @@ -/* Automatically generated file, do not edit */ -#ifndef _h_common_c -#define _h_common_c -protected el_action_t ed_end_of_file (EditLine *, Int); -protected el_action_t ed_insert (EditLine *, Int); -protected el_action_t ed_delete_prev_word (EditLine *, Int); -protected el_action_t ed_delete_next_char (EditLine *, Int); -protected el_action_t ed_kill_line (EditLine *, Int); -protected el_action_t ed_move_to_end (EditLine *, Int); -protected el_action_t ed_move_to_beg (EditLine *, Int); -protected el_action_t ed_transpose_chars (EditLine *, Int); -protected el_action_t ed_next_char (EditLine *, Int); -protected el_action_t ed_prev_word (EditLine *, Int); -protected el_action_t ed_prev_char (EditLine *, Int); -protected el_action_t ed_quoted_insert (EditLine *, Int); -protected el_action_t ed_digit (EditLine *, Int); -protected el_action_t ed_argument_digit (EditLine *, Int); -protected el_action_t ed_unassigned (EditLine *, Int); -protected el_action_t ed_tty_sigint (EditLine *, Int); -protected el_action_t ed_tty_dsusp (EditLine *, Int); -protected el_action_t ed_tty_flush_output (EditLine *, Int); -protected el_action_t ed_tty_sigquit (EditLine *, Int); -protected el_action_t ed_tty_sigtstp (EditLine *, Int); -protected el_action_t ed_tty_stop_output (EditLine *, Int); -protected el_action_t ed_tty_start_output (EditLine *, Int); -protected el_action_t ed_newline (EditLine *, Int); -protected el_action_t ed_delete_prev_char (EditLine *, Int); -protected el_action_t ed_clear_screen (EditLine *, Int); -protected el_action_t ed_redisplay (EditLine *, Int); -protected el_action_t ed_start_over (EditLine *, Int); -protected el_action_t ed_sequence_lead_in (EditLine *, Int); -protected el_action_t ed_prev_history (EditLine *, Int); -protected el_action_t ed_next_history (EditLine *, Int); -protected el_action_t ed_search_prev_history (EditLine *, Int); -protected el_action_t ed_search_next_history (EditLine *, Int); -protected el_action_t ed_prev_line (EditLine *, Int); -protected el_action_t ed_next_line (EditLine *, Int); -protected el_action_t ed_command (EditLine *, Int); -#endif /* _h_common_c */ diff --git a/lib/libedit/editline.c b/lib/libedit/editline.c deleted file mode 100644 index cfdc48cdf3d..00000000000 --- a/lib/libedit/editline.c +++ /dev/null @@ -1,22 +0,0 @@ -/* Automatically generated file, do not edit */ -#define protected static -#include "chared.c" -#include "common.c" -#include "el.c" -#include "emacs.c" -#include "fcns.c" -#include "filecomplete.c" -#include "help.c" -#include "hist.c" -#include "key.c" -#include "map.c" -#include "chartype.c" -#include "parse.c" -#include "prompt.c" -#include "read.c" -#include "refresh.c" -#include "search.c" -#include "sig.c" -#include "term.c" -#include "tty.c" -#include "vi.c" diff --git a/lib/libedit/emacs.h b/lib/libedit/emacs.h deleted file mode 100644 index 1f5ce3f16e9..00000000000 --- a/lib/libedit/emacs.h +++ /dev/null @@ -1,24 +0,0 @@ -/* Automatically generated file, do not edit */ -#ifndef _h_emacs_c -#define _h_emacs_c -protected el_action_t em_delete_or_list (EditLine *, Int); -protected el_action_t em_delete_next_word (EditLine *, Int); -protected el_action_t em_yank (EditLine *, Int); -protected el_action_t em_kill_line (EditLine *, Int); -protected el_action_t em_kill_region (EditLine *, Int); -protected el_action_t em_copy_region (EditLine *, Int); -protected el_action_t em_gosmacs_transpose (EditLine *, Int); -protected el_action_t em_next_word (EditLine *, Int); -protected el_action_t em_upper_case (EditLine *, Int); -protected el_action_t em_capitol_case (EditLine *, Int); -protected el_action_t em_lower_case (EditLine *, Int); -protected el_action_t em_set_mark (EditLine *, Int); -protected el_action_t em_exchange_mark (EditLine *, Int); -protected el_action_t em_universal_argument (EditLine *, Int); -protected el_action_t em_meta_next (EditLine *, Int); -protected el_action_t em_toggle_overwrite (EditLine *, Int); -protected el_action_t em_copy_prev_word (EditLine *, Int); -protected el_action_t em_inc_search_next (EditLine *, Int); -protected el_action_t em_inc_search_prev (EditLine *, Int); -protected el_action_t em_delete_prev_char (EditLine *, Int); -#endif /* _h_emacs_c */ diff --git a/lib/libedit/fcns.c b/lib/libedit/fcns.c deleted file mode 100644 index e7eedae14bc..00000000000 --- a/lib/libedit/fcns.c +++ /dev/null @@ -1,58 +0,0 @@ -/* Automatically generated file, do not edit */ -#include "config.h" -#include "el.h" -private const el_func_t el_func[] = { - ed_argument_digit, ed_clear_screen, - ed_command, ed_delete_next_char, - ed_delete_prev_char, ed_delete_prev_word, - ed_digit, ed_end_of_file, - ed_insert, ed_kill_line, - ed_move_to_beg, ed_move_to_end, - ed_newline, ed_next_char, - ed_next_history, ed_next_line, - ed_prev_char, ed_prev_history, - ed_prev_line, ed_prev_word, - ed_quoted_insert, ed_redisplay, - ed_search_next_history, ed_search_prev_history, - ed_sequence_lead_in, ed_start_over, - ed_transpose_chars, ed_tty_dsusp, - ed_tty_flush_output, ed_tty_sigint, - ed_tty_sigquit, ed_tty_sigtstp, - ed_tty_start_output, ed_tty_stop_output, - ed_unassigned, em_capitol_case, - em_copy_prev_word, em_copy_region, - em_delete_next_word, em_delete_or_list, - em_delete_prev_char, em_exchange_mark, - em_gosmacs_transpose, em_inc_search_next, - em_inc_search_prev, em_kill_line, - em_kill_region, em_lower_case, - em_meta_next, em_next_word, - em_set_mark, em_toggle_overwrite, - em_universal_argument, em_upper_case, - em_yank, vi_add, - vi_add_at_eol, vi_alias, - vi_change_case, vi_change_meta, - vi_change_to_eol, vi_command_mode, - vi_comment_out, vi_delete_meta, - vi_delete_prev_char, vi_end_big_word, - vi_end_word, vi_histedit, - vi_history_word, vi_insert, - vi_insert_at_bol, vi_kill_line_prev, - vi_list_or_eof, vi_match, - vi_next_big_word, vi_next_char, - vi_next_word, vi_paste_next, - vi_paste_prev, vi_prev_big_word, - vi_prev_char, vi_prev_word, - vi_redo, vi_repeat_next_char, - vi_repeat_prev_char, vi_repeat_search_next, - vi_repeat_search_prev, vi_replace_char, - vi_replace_mode, vi_search_next, - vi_search_prev, vi_substitute_char, - vi_substitute_line, vi_to_column, - vi_to_history_line, vi_to_next_char, - vi_to_prev_char, vi_undo, - vi_undo_line, vi_yank, - vi_yank_end, vi_zero, -}; - -protected const el_func_t* func__get() { return el_func; } diff --git a/lib/libedit/fcns.h b/lib/libedit/fcns.h deleted file mode 100644 index 7018b9c7d4a..00000000000 --- a/lib/libedit/fcns.h +++ /dev/null @@ -1,109 +0,0 @@ -/* Automatically generated file, do not edit */ -#ifndef _h_fcns_c -#define _h_fcns_c -#define ED_ARGUMENT_DIGIT 0 -#define ED_CLEAR_SCREEN 1 -#define ED_COMMAND 2 -#define ED_DELETE_NEXT_CHAR 3 -#define ED_DELETE_PREV_CHAR 4 -#define ED_DELETE_PREV_WORD 5 -#define ED_DIGIT 6 -#define ED_END_OF_FILE 7 -#define ED_INSERT 8 -#define ED_KILL_LINE 9 -#define ED_MOVE_TO_BEG 10 -#define ED_MOVE_TO_END 11 -#define ED_NEWLINE 12 -#define ED_NEXT_CHAR 13 -#define ED_NEXT_HISTORY 14 -#define ED_NEXT_LINE 15 -#define ED_PREV_CHAR 16 -#define ED_PREV_HISTORY 17 -#define ED_PREV_LINE 18 -#define ED_PREV_WORD 19 -#define ED_QUOTED_INSERT 20 -#define ED_REDISPLAY 21 -#define ED_SEARCH_NEXT_HISTORY 22 -#define ED_SEARCH_PREV_HISTORY 23 -#define ED_SEQUENCE_LEAD_IN 24 -#define ED_START_OVER 25 -#define ED_TRANSPOSE_CHARS 26 -#define ED_TTY_DSUSP 27 -#define ED_TTY_FLUSH_OUTPUT 28 -#define ED_TTY_SIGINT 29 -#define ED_TTY_SIGQUIT 30 -#define ED_TTY_SIGTSTP 31 -#define ED_TTY_START_OUTPUT 32 -#define ED_TTY_STOP_OUTPUT 33 -#define ED_UNASSIGNED 34 -#define EM_CAPITOL_CASE 35 -#define EM_COPY_PREV_WORD 36 -#define EM_COPY_REGION 37 -#define EM_DELETE_NEXT_WORD 38 -#define EM_DELETE_OR_LIST 39 -#define EM_DELETE_PREV_CHAR 40 -#define EM_EXCHANGE_MARK 41 -#define EM_GOSMACS_TRANSPOSE 42 -#define EM_INC_SEARCH_NEXT 43 -#define EM_INC_SEARCH_PREV 44 -#define EM_KILL_LINE 45 -#define EM_KILL_REGION 46 -#define EM_LOWER_CASE 47 -#define EM_META_NEXT 48 -#define EM_NEXT_WORD 49 -#define EM_SET_MARK 50 -#define EM_TOGGLE_OVERWRITE 51 -#define EM_UNIVERSAL_ARGUMENT 52 -#define EM_UPPER_CASE 53 -#define EM_YANK 54 -#define VI_ADD 55 -#define VI_ADD_AT_EOL 56 -#define VI_ALIAS 57 -#define VI_CHANGE_CASE 58 -#define VI_CHANGE_META 59 -#define VI_CHANGE_TO_EOL 60 -#define VI_COMMAND_MODE 61 -#define VI_COMMENT_OUT 62 -#define VI_DELETE_META 63 -#define VI_DELETE_PREV_CHAR 64 -#define VI_END_BIG_WORD 65 -#define VI_END_WORD 66 -#define VI_HISTEDIT 67 -#define VI_HISTORY_WORD 68 -#define VI_INSERT 69 -#define VI_INSERT_AT_BOL 70 -#define VI_KILL_LINE_PREV 71 -#define VI_LIST_OR_EOF 72 -#define VI_MATCH 73 -#define VI_NEXT_BIG_WORD 74 -#define VI_NEXT_CHAR 75 -#define VI_NEXT_WORD 76 -#define VI_PASTE_NEXT 77 -#define VI_PASTE_PREV 78 -#define VI_PREV_BIG_WORD 79 -#define VI_PREV_CHAR 80 -#define VI_PREV_WORD 81 -#define VI_REDO 82 -#define VI_REPEAT_NEXT_CHAR 83 -#define VI_REPEAT_PREV_CHAR 84 -#define VI_REPEAT_SEARCH_NEXT 85 -#define VI_REPEAT_SEARCH_PREV 86 -#define VI_REPLACE_CHAR 87 -#define VI_REPLACE_MODE 88 -#define VI_SEARCH_NEXT 89 -#define VI_SEARCH_PREV 90 -#define VI_SUBSTITUTE_CHAR 91 -#define VI_SUBSTITUTE_LINE 92 -#define VI_TO_COLUMN 93 -#define VI_TO_HISTORY_LINE 94 -#define VI_TO_NEXT_CHAR 95 -#define VI_TO_PREV_CHAR 96 -#define VI_UNDO 97 -#define VI_UNDO_LINE 98 -#define VI_YANK 99 -#define VI_YANK_END 100 -#define VI_ZERO 101 -#define EL_NUM_FCNS 102 -typedef el_action_t (*el_func_t)(EditLine *, Int); -protected const el_func_t* func__get(void); -#endif /* _h_fcns_c */ diff --git a/lib/libedit/help.c b/lib/libedit/help.c deleted file mode 100644 index 4a2248eb904..00000000000 --- a/lib/libedit/help.c +++ /dev/null @@ -1,212 +0,0 @@ -/* Automatically generated file, do not edit */ -#include "config.h" -#include "el.h" -#include "chartype.h" -private const struct el_bindings_t el_func_help[] = { - { STR("vi-paste-next"), VI_PASTE_NEXT, - STR("Vi paste previous deletion to the right of the cursor") }, - { STR("vi-paste-prev"), VI_PASTE_PREV, - STR("Vi paste previous deletion to the left of the cursor") }, - { STR("vi-prev-big-word"), VI_PREV_BIG_WORD, - STR("Vi move to the previous space delimited word") }, - { STR("vi-prev-word"), VI_PREV_WORD, - STR("Vi move to the previous word") }, - { STR("vi-next-big-word"), VI_NEXT_BIG_WORD, - STR("Vi move to the next space delimited word") }, - { STR("vi-next-word"), VI_NEXT_WORD, - STR("Vi move to the next word") }, - { STR("vi-change-case"), VI_CHANGE_CASE, - STR("Vi change case of character under the cursor and advance one character") }, - { STR("vi-change-meta"), VI_CHANGE_META, - STR("Vi change prefix command") }, - { STR("vi-insert-at-bol"), VI_INSERT_AT_BOL, - STR("Vi enter insert mode at the beginning of line") }, - { STR("vi-replace-char"), VI_REPLACE_CHAR, - STR("Vi replace character under the cursor with the next character typed") }, - { STR("vi-replace-mode"), VI_REPLACE_MODE, - STR("Vi enter replace mode") }, - { STR("vi-substitute-char"), VI_SUBSTITUTE_CHAR, - STR("Vi replace character under the cursor and enter insert mode") }, - { STR("vi-substitute-line"), VI_SUBSTITUTE_LINE, - STR("Vi substitute entire line") }, - { STR("vi-change-to-eol"), VI_CHANGE_TO_EOL, - STR("Vi change to end of line") }, - { STR("vi-insert"), VI_INSERT, - STR("Vi enter insert mode") }, - { STR("vi-add"), VI_ADD, - STR("Vi enter insert mode after the cursor") }, - { STR("vi-add-at-eol"), VI_ADD_AT_EOL, - STR("Vi enter insert mode at end of line") }, - { STR("vi-delete-meta"), VI_DELETE_META, - STR("Vi delete prefix command") }, - { STR("vi-end-big-word"), VI_END_BIG_WORD, - STR("Vi move to the end of the current space delimited word") }, - { STR("vi-end-word"), VI_END_WORD, - STR("Vi move to the end of the current word") }, - { STR("vi-undo"), VI_UNDO, - STR("Vi undo last change") }, - { STR("vi-command-mode"), VI_COMMAND_MODE, - STR("Vi enter command mode (use alternative key bindings)") }, - { STR("vi-zero"), VI_ZERO, - STR("Vi move to the beginning of line") }, - { STR("vi-delete-prev-char"), VI_DELETE_PREV_CHAR, - STR("Vi move to previous character (backspace)") }, - { STR("vi-list-or-eof"), VI_LIST_OR_EOF, - STR("Vi list choices for completion or indicate end of file if empty line") }, - { STR("vi-kill-line-prev"), VI_KILL_LINE_PREV, - STR("Vi cut from beginning of line to cursor") }, - { STR("vi-search-prev"), VI_SEARCH_PREV, - STR("Vi search history previous") }, - { STR("vi-search-next"), VI_SEARCH_NEXT, - STR("Vi search history next") }, - { STR("vi-repeat-search-next"), VI_REPEAT_SEARCH_NEXT, - STR("Vi repeat current search in the same search direction") }, - { STR("vi-repeat-search-prev"), VI_REPEAT_SEARCH_PREV, - STR("Vi repeat current search in the opposite search direction") }, - { STR("vi-next-char"), VI_NEXT_CHAR, - STR("Vi move to the character specified next") }, - { STR("vi-prev-char"), VI_PREV_CHAR, - STR("Vi move to the character specified previous") }, - { STR("vi-to-next-char"), VI_TO_NEXT_CHAR, - STR("Vi move up to the character specified next") }, - { STR("vi-to-prev-char"), VI_TO_PREV_CHAR, - STR("Vi move up to the character specified previous") }, - { STR("vi-repeat-next-char"), VI_REPEAT_NEXT_CHAR, - STR("Vi repeat current character search in the same search direction") }, - { STR("vi-repeat-prev-char"), VI_REPEAT_PREV_CHAR, - STR("Vi repeat current character search in the opposite search direction") }, - { STR("vi-match"), VI_MATCH, - STR("Vi go to matching () {} or []") }, - { STR("vi-undo-line"), VI_UNDO_LINE, - STR("Vi undo all changes to line") }, - { STR("vi-to-column"), VI_TO_COLUMN, - STR("Vi go to specified column") }, - { STR("vi-yank-end"), VI_YANK_END, - STR("Vi yank to end of line") }, - { STR("vi-yank"), VI_YANK, - STR("Vi yank") }, - { STR("vi-comment-out"), VI_COMMENT_OUT, - STR("Vi comment out current command") }, - { STR("vi-alias"), VI_ALIAS, - STR("Vi include shell alias") }, - { STR("vi-to-history-line"), VI_TO_HISTORY_LINE, - STR("Vi go to specified history file line.") }, - { STR("vi-histedit"), VI_HISTEDIT, - STR("Vi edit history line with vi") }, - { STR("vi-history-word"), VI_HISTORY_WORD, - STR("Vi append word from previous input line") }, - { STR("vi-redo"), VI_REDO, - STR("Vi redo last non-motion command") }, - { STR("em-delete-or-list"), EM_DELETE_OR_LIST, - STR("Delete character under cursor or list completions if at end of line") }, - { STR("em-delete-next-word"), EM_DELETE_NEXT_WORD, - STR("Cut from cursor to end of current word") }, - { STR("em-yank"), EM_YANK, - STR("Paste cut buffer at cursor position") }, - { STR("em-kill-line"), EM_KILL_LINE, - STR("Cut the entire line and save in cut buffer") }, - { STR("em-kill-region"), EM_KILL_REGION, - STR("Cut area between mark and cursor and save in cut buffer") }, - { STR("em-copy-region"), EM_COPY_REGION, - STR("Copy area between mark and cursor to cut buffer") }, - { STR("em-gosmacs-transpose"), EM_GOSMACS_TRANSPOSE, - STR("Exchange the two characters before the cursor") }, - { STR("em-next-word"), EM_NEXT_WORD, - STR("Move next to end of current word") }, - { STR("em-upper-case"), EM_UPPER_CASE, - STR("Uppercase the characters from cursor to end of current word") }, - { STR("em-capitol-case"), EM_CAPITOL_CASE, - STR("Capitalize the characters from cursor to end of current word") }, - { STR("em-lower-case"), EM_LOWER_CASE, - STR("Lowercase the characters from cursor to end of current word") }, - { STR("em-set-mark"), EM_SET_MARK, - STR("Set the mark at cursor") }, - { STR("em-exchange-mark"), EM_EXCHANGE_MARK, - STR("Exchange the cursor and mark") }, - { STR("em-universal-argument"), EM_UNIVERSAL_ARGUMENT, - STR("Universal argument (argument times 4)") }, - { STR("em-meta-next"), EM_META_NEXT, - STR("Add 8th bit to next character typed") }, - { STR("em-toggle-overwrite"), EM_TOGGLE_OVERWRITE, - STR("Switch from insert to overwrite mode or vice versa") }, - { STR("em-copy-prev-word"), EM_COPY_PREV_WORD, - STR("Copy current word to cursor") }, - { STR("em-inc-search-next"), EM_INC_SEARCH_NEXT, - STR("Emacs incremental next search") }, - { STR("em-inc-search-prev"), EM_INC_SEARCH_PREV, - STR("Emacs incremental reverse search") }, - { STR("em-delete-prev-char"), EM_DELETE_PREV_CHAR, - STR("Delete the character to the left of the cursor") }, - { STR("ed-end-of-file"), ED_END_OF_FILE, - STR("Indicate end of file") }, - { STR("ed-insert"), ED_INSERT, - STR("Add character to the line") }, - { STR("ed-delete-prev-word"), ED_DELETE_PREV_WORD, - STR("Delete from beginning of current word to cursor") }, - { STR("ed-delete-next-char"), ED_DELETE_NEXT_CHAR, - STR("Delete character under cursor") }, - { STR("ed-kill-line"), ED_KILL_LINE, - STR("Cut to the end of line") }, - { STR("ed-move-to-end"), ED_MOVE_TO_END, - STR("Move cursor to the end of line") }, - { STR("ed-move-to-beg"), ED_MOVE_TO_BEG, - STR("Move cursor to the beginning of line") }, - { STR("ed-transpose-chars"), ED_TRANSPOSE_CHARS, - STR("Exchange the character to the left of the cursor with the one under it") }, - { STR("ed-next-char"), ED_NEXT_CHAR, - STR("Move to the right one character") }, - { STR("ed-prev-word"), ED_PREV_WORD, - STR("Move to the beginning of the current word") }, - { STR("ed-prev-char"), ED_PREV_CHAR, - STR("Move to the left one character") }, - { STR("ed-quoted-insert"), ED_QUOTED_INSERT, - STR("Add the next character typed verbatim") }, - { STR("ed-digit"), ED_DIGIT, - STR("Adds to argument or enters a digit") }, - { STR("ed-argument-digit"), ED_ARGUMENT_DIGIT, - STR("Digit that starts argument") }, - { STR("ed-unassigned"), ED_UNASSIGNED, - STR("Indicates unbound character") }, - { STR("ed-tty-sigint"), ED_TTY_SIGINT, - STR("Tty interrupt character") }, - { STR("ed-tty-dsusp"), ED_TTY_DSUSP, - STR("Tty delayed suspend character") }, - { STR("ed-tty-flush-output"), ED_TTY_FLUSH_OUTPUT, - STR("Tty flush output characters") }, - { STR("ed-tty-sigquit"), ED_TTY_SIGQUIT, - STR("Tty quit character") }, - { STR("ed-tty-sigtstp"), ED_TTY_SIGTSTP, - STR("Tty suspend character") }, - { STR("ed-tty-stop-output"), ED_TTY_STOP_OUTPUT, - STR("Tty disallow output characters") }, - { STR("ed-tty-start-output"), ED_TTY_START_OUTPUT, - STR("Tty allow output characters") }, - { STR("ed-newline"), ED_NEWLINE, - STR("Execute command") }, - { STR("ed-delete-prev-char"), ED_DELETE_PREV_CHAR, - STR("Delete the character to the left of the cursor") }, - { STR("ed-clear-screen"), ED_CLEAR_SCREEN, - STR("Clear screen leaving current line at the top") }, - { STR("ed-redisplay"), ED_REDISPLAY, - STR("Redisplay everything") }, - { STR("ed-start-over"), ED_START_OVER, - STR("Erase current line and start from scratch") }, - { STR("ed-sequence-lead-in"), ED_SEQUENCE_LEAD_IN, - STR("First character in a bound sequence") }, - { STR("ed-prev-history"), ED_PREV_HISTORY, - STR("Move to the previous history line") }, - { STR("ed-next-history"), ED_NEXT_HISTORY, - STR("Move to the next history line") }, - { STR("ed-search-prev-history"), ED_SEARCH_PREV_HISTORY, - STR("Search previous in history for a line matching the current") }, - { STR("ed-search-next-history"), ED_SEARCH_NEXT_HISTORY, - STR("Search next in history for a line matching the current") }, - { STR("ed-prev-line"), ED_PREV_LINE, - STR("Move up one line") }, - { STR("ed-next-line"), ED_NEXT_LINE, - STR("Move down one line") }, - { STR("ed-command"), ED_COMMAND, - STR("Editline extended command") }, -}; - -protected const el_bindings_t* help__get(){ return el_func_help; } diff --git a/lib/libedit/help.h b/lib/libedit/help.h deleted file mode 100644 index a7e89a1af09..00000000000 --- a/lib/libedit/help.h +++ /dev/null @@ -1,5 +0,0 @@ -/* Automatically generated file, do not edit */ -#ifndef _h_help_c -#define _h_help_c -protected const el_bindings_t *help__get(void); -#endif /* _h_help_c */ diff --git a/lib/libedit/vi.h b/lib/libedit/vi.h deleted file mode 100644 index 69b07dc8167..00000000000 --- a/lib/libedit/vi.h +++ /dev/null @@ -1,51 +0,0 @@ -/* Automatically generated file, do not edit */ -#ifndef _h_vi_c -#define _h_vi_c -protected el_action_t vi_paste_next (EditLine *, Int); -protected el_action_t vi_paste_prev (EditLine *, Int); -protected el_action_t vi_prev_big_word (EditLine *, Int); -protected el_action_t vi_prev_word (EditLine *, Int); -protected el_action_t vi_next_big_word (EditLine *, Int); -protected el_action_t vi_next_word (EditLine *, Int); -protected el_action_t vi_change_case (EditLine *, Int); -protected el_action_t vi_change_meta (EditLine *, Int); -protected el_action_t vi_insert_at_bol (EditLine *, Int); -protected el_action_t vi_replace_char (EditLine *, Int); -protected el_action_t vi_replace_mode (EditLine *, Int); -protected el_action_t vi_substitute_char (EditLine *, Int); -protected el_action_t vi_substitute_line (EditLine *, Int); -protected el_action_t vi_change_to_eol (EditLine *, Int); -protected el_action_t vi_insert (EditLine *, Int); -protected el_action_t vi_add (EditLine *, Int); -protected el_action_t vi_add_at_eol (EditLine *, Int); -protected el_action_t vi_delete_meta (EditLine *, Int); -protected el_action_t vi_end_big_word (EditLine *, Int); -protected el_action_t vi_end_word (EditLine *, Int); -protected el_action_t vi_undo (EditLine *, Int); -protected el_action_t vi_command_mode (EditLine *, Int); -protected el_action_t vi_zero (EditLine *, Int); -protected el_action_t vi_delete_prev_char (EditLine *, Int); -protected el_action_t vi_list_or_eof (EditLine *, Int); -protected el_action_t vi_kill_line_prev (EditLine *, Int); -protected el_action_t vi_search_prev (EditLine *, Int); -protected el_action_t vi_search_next (EditLine *, Int); -protected el_action_t vi_repeat_search_next (EditLine *, Int); -protected el_action_t vi_repeat_search_prev (EditLine *, Int); -protected el_action_t vi_next_char (EditLine *, Int); -protected el_action_t vi_prev_char (EditLine *, Int); -protected el_action_t vi_to_next_char (EditLine *, Int); -protected el_action_t vi_to_prev_char (EditLine *, Int); -protected el_action_t vi_repeat_next_char (EditLine *, Int); -protected el_action_t vi_repeat_prev_char (EditLine *, Int); -protected el_action_t vi_match (EditLine *, Int); -protected el_action_t vi_undo_line (EditLine *, Int); -protected el_action_t vi_to_column (EditLine *, Int); -protected el_action_t vi_yank_end (EditLine *, Int); -protected el_action_t vi_yank (EditLine *, Int); -protected el_action_t vi_comment_out (EditLine *, Int); -protected el_action_t vi_alias (EditLine *, Int); -protected el_action_t vi_to_history_line (EditLine *, Int); -protected el_action_t vi_histedit (EditLine *, Int); -protected el_action_t vi_history_word (EditLine *, Int); -protected el_action_t vi_redo (EditLine *, Int); -#endif /* _h_vi_c */ |