diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2015-06-21 18:58:35 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2015-06-21 19:36:13 +0100 |
| commit | 75dd74ff43ba269bd62ff9b69d32f3fda2f511f9 (patch) | |
| tree | b6fbe17db013d6a5c8b54a51bb6c4d63043c8253 | |
| parent | 64cbdcd3282c1500c01f4f15572173d67ea7cae6 (diff) | |
Use <a-R> as replace paste all yanked selections
Move rotate to ' and rotate contents to <a-'>
Fix segfault when pasting all and nothing was yanked yet
| -rw-r--r-- | README.asciidoc | 6 | ||||
| -rw-r--r-- | doc/keymap | 2 | ||||
| -rw-r--r-- | src/normal.cc | 13 |
3 files changed, 13 insertions, 8 deletions
diff --git a/README.asciidoc b/README.asciidoc index 02d10973..5f865547 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -243,7 +243,7 @@ Movement * `pageup`: scroll up * `pagedown`: scroll down - * `alt-r`: rotate selections (the main selection becomes the next one) + * `'`: rotate selections (the main selection becomes the next one) * `;`: reduce selections to their cursor * `alt-;`: flip the selections direction @@ -329,8 +329,8 @@ Changes * `alt-@`: convert spaces to tabs in current selections, uses the buffer tabstop option or the count parameter for tabstop. - * `alt-R`: rotate selections content, if specified, the count groups - selections, so `3<a-R>` rotate (1, 2, 3) and (3, 4, 6) + * `alt-'`: rotate selections content, if specified, the count groups + selections, so `3<a-'>` rotate (1, 2, 3) and (3, 4, 6) independently. Goto Commands @@ -9,7 +9,7 @@ ┣━━━━━━━━━━━┻━┱─────┴─┬─────┴─┬─────┴─┬─────┴─┬─────┴─┬─────┴─┬─────┴─┬─────┴─┬─────┴─┬─────┴─┬─────┴─┬─────┺━┓ ┃ ┃ ⇬ ┃ APPEND│ split│ │ ᵐʳ│ ᵐᵍ│ ᵐˡ│ ᵐ│ ᵐ│ ᵐˡ│cmdline│use reg│ pipe┃ ┃ ┃ ┠┄┄┄┄┄┄┄┼┄┄┄┄┄┄┄┼┄┄┄┄┄┄┄┤ find│ goto │ │ │ │ ├┄┄┄┄┄┄┄┼┄┄┄┄┄┄┄┼┄┄┄┄┄┄┄┨ ┃ -┃ ┃ append│ select│ delete│ char│ │ ← │ ↓ │ ↑ │ → │ cursor│ │eschook┃ ┃ +┃ ┃ append│ select│ delete│ char│ │ ← │ ↓ │ ↑ │ → │ cursor│ rotate│eschook┃ ┃ ┣━━━━━━━━━┳━━━┹───┬───┴───┬───┴───┬───┴───┬───┴───┬───┴───┬───┴───┬───┴───┬───┴───┬───┴───┬───┴───┲━━━┷━━━━━━━┻━━━━━━━━┫ ┃ ┃ indent│ │ ᵐ│copysel│ ᵛ│ ᵐʷ│ ᵐʳ│ │ dedent│ indent│ ᵐʳ┃ ┃ ┃ ┠┄┄┄┄┄┄┄┤ │ select├┄┄┄┄┄┄┄┤ view│ prev│ search│ match├┄┄┄┄┄┄┄┼┄┄┄┄┄┄┄┤ search┃ ┃ diff --git a/src/normal.cc b/src/normal.cc index 6a936f82..84724b11 100644 --- a/src/normal.cc +++ b/src/normal.cc @@ -533,7 +533,10 @@ void paste_all(Context& context, NormalParams params) Vector<ByteCount> offsets; for (auto& str : strings) { - if (not str.empty() and str.back() == '\n') + if (str.empty()) + continue; + + if (str.back() == '\n') effective_mode = adapt_for_linewise(mode); all += str; offsets.push_back(all.length()); @@ -557,7 +560,8 @@ void paste_all(Context& context, NormalParams params) pos = offset; } } - selections = std::move(result); + if (not result.empty()) + selections = std::move(result); } template<typename T> @@ -1463,6 +1467,7 @@ static NormalCmdDesc cmds[] = { alt('p'), "paste every yanked selection after selected text", paste_all<InsertMode::Append> }, { alt('P'), "paste every yanked selection before selected text", paste_all<InsertMode::Insert> }, { 'R', "replace selected text with yanked text", paste<InsertMode::Replace> }, + { alt('R'), "replace selected text with yanked text", paste_all<InsertMode::Replace> }, { 's', "select regex matches in selected text", select_regex }, { 'S', "split selected text on regex matches", split_regex }, @@ -1554,8 +1559,8 @@ static NormalCmdDesc cmds[] = { ctrl('o'), "jump backward in jump list", jump<Backward> }, { ctrl('s'), "push current selections in jump list", save_selections }, - { alt('r'), "rotate main selection", rotate_selections }, - { alt('R'), "rotate selections content", rotate_selections_content }, + { '\'', "rotate main selection", rotate_selections }, + { alt('\''), "rotate selections content", rotate_selections_content }, { 'q', "replay recorded macro", replay_macro }, { 'Q', "start or end macro recording", start_or_end_macro_recording }, |
