diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2013-04-30 14:29:18 +0200 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2013-04-30 14:29:18 +0200 |
| commit | b69c9ea7534b6001e55d7befcb62d6f4c4385f93 (patch) | |
| tree | 0543406d13e3e1a6b8116a405f8ea9dca580abf3 /src/normal.cc | |
| parent | 4bb3863f954e565908caad023300001f30e73948 (diff) | |
add paragraph (p) object
Diffstat (limited to 'src/normal.cc')
| -rw-r--r-- | src/normal.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/normal.cc b/src/normal.cc index b7995762..8d7b19cb 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -524,6 +524,7 @@ void select_object(Context& context) { { Key::Modifiers::None, 'w' }, std::bind(select_whole_word<false>, _1, flags & SurroundFlags::Inner) }, { { Key::Modifiers::None, 'W' }, std::bind(select_whole_word<true>, _1, flags & SurroundFlags::Inner) }, { { Key::Modifiers::None, 's' }, std::bind(select_whole_sentence, _1, flags & SurroundFlags::Inner) }, + { { Key::Modifiers::None, 'p' }, std::bind(select_whole_paragraph, _1, flags & SurroundFlags::Inner) }, }; auto it = key_to_selector.find(key); |
