funmap.c (readline-7.0-rc1) | : | funmap.c (readline-7.0-rc2) | ||
---|---|---|---|---|
/* funmap.c -- attach names to functions. */ | /* funmap.c -- attach names to functions. */ | |||
/* Copyright (C) 1987-2015 Free Software Foundation, Inc. | /* Copyright (C) 1987-2016 Free Software Foundation, Inc. | |||
This file is part of the GNU Readline Library (Readline), a library | This file is part of the GNU Readline Library (Readline), a library | |||
for reading lines of text with interactive input and history editing. | for reading lines of text with interactive input and history editing. | |||
Readline is free software: you can redistribute it and/or modify | Readline is free software: you can redistribute it and/or modify | |||
it under the terms of the GNU General Public License as published by | it under the terms of the GNU General Public License as published by | |||
the Free Software Foundation, either version 3 of the License, or | the Free Software Foundation, either version 3 of the License, or | |||
(at your option) any later version. | (at your option) any later version. | |||
Readline is distributed in the hope that it will be useful, | Readline is distributed in the hope that it will be useful, | |||
skipping to change at line 197 | skipping to change at line 197 | |||
{ "vi-prev-word", rl_vi_prev_word }, | { "vi-prev-word", rl_vi_prev_word }, | |||
{ "vi-put", rl_vi_put }, | { "vi-put", rl_vi_put }, | |||
{ "vi-redo", rl_vi_redo }, | { "vi-redo", rl_vi_redo }, | |||
{ "vi-replace", rl_vi_replace }, | { "vi-replace", rl_vi_replace }, | |||
{ "vi-rubout", rl_vi_rubout }, | { "vi-rubout", rl_vi_rubout }, | |||
{ "vi-search", rl_vi_search }, | { "vi-search", rl_vi_search }, | |||
{ "vi-search-again", rl_vi_search_again }, | { "vi-search-again", rl_vi_search_again }, | |||
{ "vi-set-mark", rl_vi_set_mark }, | { "vi-set-mark", rl_vi_set_mark }, | |||
{ "vi-subst", rl_vi_subst }, | { "vi-subst", rl_vi_subst }, | |||
{ "vi-tilde-expand", rl_vi_tilde_expand }, | { "vi-tilde-expand", rl_vi_tilde_expand }, | |||
{ "vi-unix-word-rubout", rl_vi_unix_word_rubout }, | ||||
{ "vi-yank-arg", rl_vi_yank_arg }, | { "vi-yank-arg", rl_vi_yank_arg }, | |||
{ "vi-yank-pop", rl_vi_yank_pop }, | { "vi-yank-pop", rl_vi_yank_pop }, | |||
{ "vi-yank-to", rl_vi_yank_to }, | { "vi-yank-to", rl_vi_yank_to }, | |||
#endif /* VI_MODE */ | #endif /* VI_MODE */ | |||
{(char *)NULL, (rl_command_func_t *)NULL } | {(char *)NULL, (rl_command_func_t *)NULL } | |||
}; | }; | |||
int | int | |||
rl_add_funmap_entry (name, function) | rl_add_funmap_entry (name, function) | |||
End of changes. 2 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added |