Kaydet (Commit) b6c935a9 authored tarafından Guido van Rossum's avatar Guido van Rossum

Set the completer's word break characters appropriate for Python.

üst 47529661
......@@ -168,6 +168,10 @@ setup_readline()
rl_bind_key_in_map ('\033', rl_complete, emacs_meta_keymap);
/* Set our completion function */
rl_completion_entry_function = (Function *) on_completion;
/* Set Python word break characters */
rl_completer_word_break_characters =
" \t\n`~!@#$%^&*()-=+[{]}\\|;:'\",<>/?";
/* All nonalphanums except '.' */
/* Initialize (allows .inputrc to override) */
rl_initialize();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment