Home | History | Annotate | Download | only in libedit

Lines Matching refs:editor

45  * map.c: Editor function definitions
951 * Free the space taken by the editor maps
1098 * Set the editor
1101 map_set_editor(EditLine *el, wchar_t *editor)
1104 if (wcscmp(editor, L"emacs") == 0) {
1108 if (wcscmp(editor, L"vi") == 0) {
1117 * Retrieve the editor
1120 map_get_editor(EditLine *el, const wchar_t **editor)
1123 if (editor == NULL)
1127 *editor = L"emacs";
1130 *editor = L"vi";