Jak zastąpić-wkleić szarpany tekst w vimie bez szarpania usuniętych linii?


39

Zwykle więc kopiuję tekst z jednego punktu do drugiego, zastępując stary tekst w miejscu wklejenia nowego:

blah1
newtext
blah2
wrong1
blah3
wrong2
blah4

Załóżmy, że oznaczyłem go wizualnie newtexti ypotknąłem. Teraz wybieram wrong1(co może być czymkolwiek, niekoniecznie tylko słowem) i i ptak newtext. Jeśli jednak teraz zrobię to samo wrong2, zostanie zastąpione przez wrong1zamiast newtext.

Jak więc uniemożliwić zamianę tekstu znajdującego się w buforze na tekst, który obecnie zastępuję?

Edytuj 1

Chociaż podoba mi się sugestie ponownego rejestrowania (myślę, że zacznę więcej używać rejestrów, teraz kiedy odkryłem :dispolecenie), idę z modyfikacją odpowiedzi jinfield , ponieważ nie używam trybu wymiany.

vnoremap p "0p
vnoremap P "0P
vnoremap y "0y
vnoremap d "0d

robi lewę idealnie.

Edytuj 2

Byłem zbyt szybki; Rozwiązanie romainl jest dokładnie tym, czego szukałem, bez włamania w Edycji 1 .
W rzeczywistości vnoremap p "_dPwystarczy!
Zmieniając zaakceptowaną odpowiedź.


2
Hej, fyi, od dawna tego używałem vnoremap p "_dP mapi zauważyłem, że nie działa dobrze dla ostatniego słowa / znaku w linii. Poszedłem z powrotem do vnoremap p "0p, vnoremap P "0Pi set clipboard=unnamed(dla OSX)
Kache

vnoremap p "_dPusuwa białe spacje po wklejeniu. Edycja 1 działa idealnie.
Vaclav Kasal

Odpowiedzi:


21

Mam te mapowania w moim .vimrc:

" delete without yanking
nnoremap <leader>d "_d
vnoremap <leader>d "_d

" replace currently selected text with default register
" without yanking it
vnoremap <leader>p "_dP

"_to „rejestr czarnej dziury”, zgodnie z :help "_:

„Podczas pisania do tego rejestru nic się nie dzieje. Można tego użyć do usunięcia tekstu bez wpływu na normalne rejestry. Podczas czytania z tego rejestru nic nie jest zwracane. {Not in Vi}"


1
Użyłem tego vnoremap p "_dP mapi zauważyłem, że nie działa dobrze dla ostatniego słowa / znaku w linii. Poszedłem z powrotem do vnoremap p "0p, vnoremap P "0Pi set clipboard=unnamed(dla OSX)
Kache

vnoremap p "_dPprzestań dla mnie pracować w trybie wyboru, ale vnoremap <leader>p "_dPdziała
whitesiroi,

1
może <leader>jest symbolem zastępczym, który powinienem wiedzieć, aby coś zastąpić, ale działało to dla mnie tylko wtedy, gdy go usunąłem. Co to znaczy tutaj?
Hashbrown,

1
@Hashbrown, :help mapleader.
romainl,

Małe zastrzeżenie: vnoremap <leader>pmapowanie nie działa poprawnie w ostatnim wierszu bufora, ponieważ jak tylko usuniesz ten ostatni wiersz bufora, jesteś teraz w przedostatniej linii, a Pwkleisz powyżej tej linii, zamiast poniżej.
Kal

13

Oprócz standardowego bufora możesz przeciągać tekst do nazwanych buforów, a następnie wstawiać z tych nazwanych buforów. Można użyć do 26 nazwanych buforów (jeden na każdą literę). Użyj podwójnych cudzysłowów i litery, aby uzyskać dostęp do nazwanego bufora. Przykłady:

"dyy - Pociągnij bieżącą linię do bufora d.
"a7yy- Wciągnij kolejne siedem linii do bufora a.
"dP- Umieść zawartość bufora d przed kursorem.
"ap- Umieść zawartość bufora za kursorem

Kolejna fajna rzecz, jeśli użyjesz dużej litery zamiast małych liter, tj "Dyy. Bieżąca linia zostanie dodana do bufora d zamiast jej zastąpienia. Więcej szczegółów w książce O`Reilly: http://docstore.mik.ua/orelly/unix/vi/ch04_03.htm


3
Bardzo fajna rzecz. Wiedziałem o buforach, ale nie łączyłem ich z tym problemem. Nadal "awszystko jest uciążliwe , ale w porządku.
maska ​​bitowa

4

Podczas używania putw trybie wizualnym zastępowany tekst wrong1jest zastępowany zawartością rejestru „unamed”.

W rzeczywistości działa to poprzez „umieszczenie” rejestru po zaznaczeniu, a następnie usunięcie zaznaczenia. Problem polega na tym, że to usunięcie jest teraz przechowywane w unnamedrejestrze i zostanie wykorzystane do następnej putakcji.

Według rozwiązania rozwiązaniem :h v_pjest szarpnięcie do nazwanego rejestru, na przykład "0y, a następnie wklejenie, używając "0ptyle czasu, ile potrzebujesz. Pomocne może być mapowanie <leader>yi <leader>pkorzystanie z nazwanego rejestru, jeśli robisz to często.

:map <leader>y "0y
:map <leader>p "0p

Aby uzyskać więcej pomocy zobacz:

:help v_p
:help map

To rozwiązanie wydaje się najbardziej przydatne, dopóki z vima nie wyjdzie coś sprytnego.
Yugal Jindle

4

Wklejanie danych z "0rejestru jest ważne, ale często chcesz je wymienić wiele razy. Jeśli .sprawisz , że będzie to powtarzalne działanie, możesz użyć operatora, o czym wspomniał garyjohn. Wyjaśniono to na wiki vim :

yiw     yank inner word (copy word under cursor, say "first". Same as above).
...     Move the cursor to another word (say "second").
ciw<C-r>0   select "second", then replace it with "first" If you are at the start of the word then cw<C-r>0 is sufficient.
...     Move the cursor to another word (say "third").
.   select "third", then replace it with "first". 

3

Gdy szarpniesz tekst do rejestru bez nazwy *, kopia jest również umieszczana w rejestrze 0. Za każdym razem, gdy zastępujesz zaznaczony tekst, możesz po prostu wkleić go z rejestru 0. Widzieć

:help registers

Ponadto, jeśli zastępujesz wiele słów tym samym słowem, możesz po prostu przejść do początku słowa, które chcesz zastąpić, i wpisać .. To powtórzy ostatnią operację edycji. Widzieć

:help single-repeat

* Miejsca przechowywania, do których zaciągasz i z których wkładasz, nazywane są rejestrami. Bufor to element, który edytujesz, zwykle kopia pliku z dysku.


1

Potrzebuję tego tak często, napisałem wtyczkę: ReplaceWithRegister .

Ta wtyczka oferuje polecenie dwa w jednym, grktóre zastępuje tekst objęty {ruch}, całą linię (liniami) lub bieżącym zaznaczeniem zawartością rejestru; stary tekst jest usuwany do rejestru czarnej dziury, tzn. zniknął.


1

Ponieważ coś takiego vnoremap p "_dP(próbowałem xlub c) ma problemy z początkiem i końcem linii, skończyło się na tym, vnoremap p :<C-U>let @p = @+<CR>gvp:let @+ = @p<CR>że znalazłem prostsze niż istniejące wtyczki (które również nie działały po set clipboard=unnamedpluswyjęciu z pudełka). Więc to, co robi:

  • przejdź do trybu poleceń
  • usuń zakres ( C-U)
  • +rejestr kopii zapasowej (z powodu nienazwanego plusu, alternatywne są "i *zależnie od konfiguracji) dop
  • odzyskaj zaznaczenie i wklej
  • przełącz się ponownie w tryb poleceń
  • odzyskać rejestr

Doskonały! To pierwsza z tych opcji, która działała dokładnie tak, jak się spodziewano. Dzięki!
Jamis Charles,

1

To jest to, czego używam (dosłownie skopiowane z mojego .vimrc) do sterowania w stylu Windows + X cut / Control + C copy / Control + V paste / Control + S save / Control + F find / Control + H replace replace.

Funkcja smartpaste () powinna zawierać to, czego szukasz, czyli sposób wklejania podświetlonego tekstu bez jednoczesnego szarpania tego, co zostało wybrane.

" Windows common keyboard shortcuts and pasting behavior {{{

" Uncomment to enable debugging.
" Check debug output with :messages
let s:debug_smart_cut = 0
let s:debug_smart_copy = 0
let s:debug_smart_paste = 0

function! SmartCut()
    execute 'normal! gv"+c'

    if visualmode() != "\<C-v>" " If not Visual-Block mode
        " Trim the last \r\n | \n | \r character in the '+' buffer
        " NOTE: This messes up Visual-Block pasting.
        let @+ = substitute(@+,'\(\r\?\n\|\r\)$','','g')
    endif

    if exists("s:debug_smart_cut") && s:debug_smart_cut
        echomsg "SmartCut '+' buffer: " . @+
    endif
endfunction

function! SmartCopy()
    execute 'normal! gv"+y'

    if visualmode() != "\<C-v>" " If not Visual-Block mode
        " Trim the last \r\n | \n | \r character in the '+' buffer
        " NOTE: This messes up Visual-Block pasting.
        let @+ = substitute(@+,'\(\r\?\n\|\r\)$','','g')
    endif

    if exists("s:debug_smart_copy") && s:debug_smart_copy
        echomsg "SmartCopy '+' buffer: " . @+
    endif
endfunction

" Delete to black hole register before pasting. This function is a smarter version of "_d"+P or "_dp to handle special cases better.
" SOURCE: http://stackoverflow.com/questions/12625722/vim-toggling-buffer-overwrite-behavior-when-deleting
function! SmartPaste()
    let mode = 'gv'

    let delete = '"_d'

    let reg = '"+'

    " See :help '> for more information. Hint: if you select some text and press ':' you will see :'<,'>
    " SOURCE: http://superuser.com/questions/723621/how-can-i-check-if-the-cursor-is-at-the-end-of-a-line
    " SOURCE: http://stackoverflow.com/questions/7262536/vim-count-lines-in-selected-range
    " SOURCE: https://git.zug.fr/config/vim/blob/master/init.vim
    " SOURCE: https://git.zug.fr/config/vim/blob/master/after/plugin/zzzmappings.vim
    let currentColumn = col(".")
    let currentLine = line(".")
    let lastVisibleLetterColumn = col("$") - 1
    let lastLineOfBuffer = line("$")
    let selectionEndLine = line("'>")
    let selectionEndLineLength = len(getline(selectionEndLine))
    let nextLineLength = len(getline(currentLine + 1))
    let selectionStartColumn = col("'<")
    let selectionEndColumn = col("'>")

    " If selection does not include or go beyond the last visible character of the line (by also selecting the invisible EOL character)
    if selectionEndColumn < selectionEndLineLength
        let cmd = 'P'

        if exists("s:debug_smart_paste") && s:debug_smart_paste
            echomsg "SmartPaste special case #1"
        endif

    " If attempting to paste on a blank last line
    elseif selectionEndLineLength == 0 && selectionEndLine == lastLineOfBuffer
        let cmd = 'P'

        if exists("s:debug_smart_paste") && s:debug_smart_paste
            echomsg "SmartPaste special case #2"
        endif

    " If selection ends after the last visible character of the line (by also selecting the invisible EOL character) and next line is not blank and not the last line
    elseif selectionEndColumn > selectionEndLineLength && nextLineLength > 0 && selectionEndLine != lastLineOfBuffer
        let cmd = 'P'

        if exists("s:debug_smart_paste") && s:debug_smart_paste
            echomsg "SmartPaste special case #3"
        endif

    " If selection ends after the last visible character of the line (by also selecting the invisible EOL character), or the line is visually selected (Shift + V), and next line is the last line
    elseif selectionEndColumn > selectionEndLineLength && selectionEndLine == lastLineOfBuffer
        " SOURCE:  http://vim.wikia.com/wiki/Quickly_adding_and_deleting_empty_lines

        " Fixes bug where if the last line is fully selected (Shift + V) and a paste occurs, that the paste appears to insert after the first character of the line above it because the delete operation [which occurs before the paste]
        " is causing the caret to go up a line, and then 'p' cmd causes the paste to occur after the caret, thereby pasting after the first letter of that line.
        " However this but does not occur if there's a blank line underneath the selected line, prior to deleting it, as the cursor goes down after the delete in that situation.
        call append(selectionEndLine, "")

        let cmd = 'p'

        if exists("s:debug_smart_paste") && s:debug_smart_paste
            echomsg "SmartPaste special case #4"
        endif

    else
        let cmd = 'p'

        if exists("s:debug_smart_paste") && s:debug_smart_paste
            echomsg "SmartPaste default case"
        endif
    endif

    if exists("s:debug_smart_paste") && s:debug_smart_paste
        echomsg "SmartPaste debug info:"
        echomsg "    currentColumn: " . currentColumn
        echomsg "    currentLine: " . currentLine
        echomsg "    lastVisibleLetterColumn: " . lastVisibleLetterColumn
        echomsg "    lastLineOfBuffer: " . lastLineOfBuffer
        echomsg "    selectionEndLine: " . selectionEndLine
        echomsg "    selectionEndLineLength: " . selectionEndLineLength
        echomsg "    nextLineLength: " . nextLineLength
        echomsg "    selectionStartColumn: " . selectionStartColumn
        echomsg "    selectionEndColumn: " . selectionEndColumn
        echomsg "    cmd: " . cmd
        echo [getpos("'<")[1:2], getpos("'>")[1:2]]
        echo "visualmode(): " . visualmode()
        echo "mode(): " . mode()
    endif

    if visualmode() != "\<C-v>" " If not Visual-Block mode
        " Trim the last \r\n | \n | \r character in the '+' buffer
        " NOTE: This messes up Visual-Block pasting.
        let @+ = substitute(@+,'\(\r\?\n\|\r\)$','','g')
    endif

    try
        execute 'normal! ' . mode . delete . reg . cmd
    catch /E353:\ Nothing\ in\ register\ +/
    endtry

    " Move caret one position to right
    call cursor(0, col(".") + 1)
endfunction

" p or P delete to black hole register before pasting
" NOTE: <C-u> removes the '<,'> visual-selection from the command line. See :h c_CTRL-u
vnoremap <silent> p :<C-u>call SmartPaste()<CR>
vnoremap <silent> P :<C-u>call SmartPaste()<CR>

" MiddleMouse delete to black hole register before pasting
nnoremap <MiddleMouse> "+p " Changes default behavior from 'P' mode to 'p' mode for normal mode middle-mouse pasting
" NOTE: <C-u> removes the '<,'> visual-selection from the command line. See :h c_CTRL-u
vnoremap <silent> <MiddleMouse> :<C-u>call SmartPaste()<CR>
inoremap <MiddleMouse> <C-r><C-o>+

" Disable weird multi-click things you can do with middle mouse button
" SOURCE: http://vim.wikia.com/wiki/Mouse_wheel_for_scroll_only_-_disable_middle_button_paste
noremap <2-MiddleMouse> <Nop>
inoremap <2-MiddleMouse> <Nop>
noremap <3-MiddleMouse> <Nop>
inoremap <3-MiddleMouse> <Nop>
noremap <4-MiddleMouse> <Nop>
inoremap <4-MiddleMouse> <Nop>

if os != "mac" " NOTE: MacVim provides Command+C|X|V|A|S and undo/redo support and also can Command+C|V to the command line by default
    " SOURCE: https://opensource.apple.com/source/vim/vim-62.41.2/runtime/macmap.vim.auto.html
    " NOTE: Only copy and paste are possible in the command line from what i can tell.
    "       Their is no undo for text typed in the command line and you cannot paste text onto a selection of text to replace it.
    cnoremap <C-c> <C-y>
    cnoremap <C-v> <C-r>+
    " TODO: Is their a select-all for the command line???

    " Cut, copy, and paste support for visual and insert mode (not for normal mode)
    " SOURCE: http://superuser.com/questions/10588/how-to-make-cut-copy-paste-in-gvim-on-ubuntu-work-with-ctrlx-ctrlc-ctrlv
    " NOTE: <C-u> removes the '<,'> visual-selection from the command line. See :h c_CTRL-u
    vnoremap <silent> <C-x> :<C-u>call SmartCut()<CR>
    vnoremap <silent> <C-c> :<C-u>call SmartCopy()<CR>
    vnoremap <silent> <C-v> :<C-u>call SmartPaste()<CR>
    inoremap <C-v> <C-r><C-o>+

    " Select-all support for normal, visual, and insert mode
    " http://vim.wikia.com/wiki/Using_standard_editor_shortcuts_in_Vim
    nnoremap <C-a> ggVG
    vnoremap <C-a> ggVG
    inoremap <C-a> <Esc>ggVG

    " Save file support for normal, visual, and insert mode
    " SOURCE: http://vim.wikia.com/wiki/Map_Ctrl-S_to_save_current_or_new_files
    " If the current buffer has never been saved, it will have no name,
    " call the file browser to save it, otherwise just save it.
    command -nargs=0 -bar Update if &modified |
                                \    if empty(bufname('%')) |
                                \        browse confirm write |
                                \    else |
                                \        confirm write |
                                \    endif |
                                \endif
    nnoremap <silent> <C-s> :update<CR>
    " NOTE: <C-u> removes the '<,'> visual-selection from the command line. See :h c_CTRL-u
    vnoremap <silent> <C-s> :<C-u>update<CR>V
    " NOTE: <C-o> executes a normal-mode command without leaving insert mode. See :help ins-special-special
    "inoremap <silent> <C-s> <C-o>:update<CR>
    "
    " <C-o> doesn't seem to work while also using the "Open the OmniCompletion menu as you type" code while the menu is visible.
    " Doing "call feedkeys("\<C-x>\<C-o>", "n")" to perform omni completion seems to be the issue.
    " However doing "call feedkeys("\<C-x>\<C-i>", "n")" to perform keywork completion seems to work without issue.
    "
    " Workaround will exit insert mode to execute the command and then enter insert mode.
    inoremap <silent> <C-s> <Esc>:update<CR>I

    " Undo and redo support for normal, visual, and insert mode
    nnoremap <C-z> <Esc>u
    nnoremap <C-y> <Esc><C-r>

    " NOTE: <C-u> removes the '<,'> visual-selection from the command line. See :h c_CTRL-u
    vnoremap <C-z> :<C-u>uV
    vnoremap <C-y> :<C-u><C-r>V

    inoremap <C-z> <Esc>uI
    inoremap <C-y> <Esc><C-r>I

    function! Find()
        let wordUnderCursor = expand('<cword>')
        if len(wordUnderCursor) > 0
            execute 'promptfind ' . wordUnderCursor
        else
            execute 'promptfind'
        endif
    endfunction

    function! Replace()
        let wordUnderCursor = expand('<cword>')
        if len(wordUnderCursor) > 0
            execute 'promptrepl ' . wordUnderCursor
        else
            execute 'promptrepl'
        endif
    endfunction

    " Find and Find/Replace support for normal, visual, and insert mode
    nnoremap <C-f> :call Find()<CR>
    nnoremap <C-h> :call Replace()<CR>

    " NOTE: <C-u> removes the '<,'> visual-selection from the command line. See :h c_CTRL-u
    vnoremap <C-f> :<C-u>call Find()<CR>
    vnoremap <C-h> :<C-u>call Replace()<CR>

    " NOTE: <C-o> executes a normal-mode command without leaving insert mode. See :help ins-special-special
    inoremap <C-f> <C-o>:call Find()<CR>
    inoremap <C-h> <C-o>:call Replace()<CR>
endif

" }}} Windows common keyboard shortcuts and pasting behavior

-1

tl; dr - vnoremap p "_c *

Oto lista moich pełnych mapowań:
„Napraw kopię / wklej
rejestr nnoremap DD” * dd
nnoremap D ”* d
vnoremap D" d
nnoremap d "_d
nnoremap dd" _dd
vnoremap d "_d
nnoremap s" _s
vnoremap s "_s
nnoremap c "
_c vnoremap c"
_c nnoremap x "_x
vnoremap x" _x
vnoremap p "_c

„Wklej w nowej linii
nnoremap, p op
nnoremap, P op

Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.