diff options
Diffstat (limited to 'src/input_handler.cc')
| -rw-r--r-- | src/input_handler.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc index a891ccc8..6fa41d6f 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -1224,12 +1224,15 @@ public: if (key.key == 'W') m_completer.explicit_word_all_complete(); if (key.key == 'l') - m_completer.explicit_line_complete(); + m_completer.explicit_line_buffer_complete(); + if (key.key == 'L') + m_completer.explicit_line_all_complete(); }, "enter completion type", "f: filename\n" "w: word (current buffer)\n" "W: word (all buffers)\n" - "l: line\n"); + "l: line (current buffer)\n" + "L: line (all buffers)\n"); update_completions = false; } else if (key == ctrl('o')) |
