Explorar el Código

Fix build break; rl_menu_complete missing on macOS

master
Arun Prakash Jana hace 6 años
padre
commit
e039b0ee35
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: A75979F35C080412
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. +4
    -0
      src/nnn.c

+ 4
- 0
src/nnn.c Ver fichero

@@ -4031,7 +4031,11 @@ int main(int argc, char *argv[])

/* Bind TAB to cycling */
rl_variable_bind("completion-ignore-case", "on");
#ifdef __linux__
rl_bind_key('\t', rl_menu_complete);
#else
rl_bind_key('\t', rl_complete);
#endif
read_history(NULL);

#ifdef DEBUGMODE


Cargando…
Cancelar
Guardar