Skip to content

Commit

Permalink
fix tab completion after comma and other punctuation
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Jan 23, 2013
1 parent 2ec9ce5 commit 93a9481
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ui/repl-readline.c
Original file line number Diff line number Diff line change
Expand Up @@ -634,6 +634,7 @@ static void init_rl(void)
{
rl_readline_name = "julia";
rl_attempted_completion_function = julia_completion;
rl_completer_word_break_characters = " \t\n\"\\'`@$><=;|&{}()[],+-*/?%^~!";
Keymap keymaps[] = {emacs_standard_keymap, vi_insertion_keymap};
int i;
for (i = 0; i < sizeof(keymaps)/sizeof(keymaps[0]); i++) {
Expand Down

0 comments on commit 93a9481

Please sign in to comment.