2013-12-06 00:26:36 -05:00
|
|
|
function! s:exchange(x, y)
|
2013-12-05 12:50:07 -05:00
|
|
|
let a = getpos("'a")
|
|
|
|
let b = getpos("'b")
|
2013-12-06 00:26:36 -05:00
|
|
|
let reg = @@
|
|
|
|
|
|
|
|
call setpos("'a", a:y[2])
|
|
|
|
call setpos("'b", a:y[3])
|
|
|
|
let @@ = a:x[0]
|
2013-12-10 04:18:03 -05:00
|
|
|
silent exe "normal! `a" . a:y[1] . "`b\"\"p"
|
2013-12-06 00:26:36 -05:00
|
|
|
|
|
|
|
call setpos("'a", a:x[2])
|
|
|
|
call setpos("'b", a:x[3])
|
|
|
|
let @@ = a:y[0]
|
2013-12-10 04:18:03 -05:00
|
|
|
silent exe "normal! `a" . a:x[1] . "`b\"\"p"
|
2013-12-06 00:26:36 -05:00
|
|
|
|
2013-12-05 12:50:07 -05:00
|
|
|
call setpos("'a", a)
|
|
|
|
call setpos("'b", b)
|
2013-12-06 00:26:36 -05:00
|
|
|
let @@ = reg
|
|
|
|
endfunction
|
|
|
|
|
2013-12-06 13:45:08 -05:00
|
|
|
function! s:exchange_get(type, vis)
|
2013-12-06 00:26:36 -05:00
|
|
|
let reg = @@
|
|
|
|
let selection = &selection
|
|
|
|
let &selection = 'inclusive'
|
|
|
|
if a:vis
|
|
|
|
let type = a:type
|
|
|
|
let [start, end] = s:store_pos("'<", "'>")
|
|
|
|
silent exe "normal! `<" . a:type . "`>y"
|
|
|
|
elseif a:type == 'line'
|
|
|
|
let type = 'V'
|
|
|
|
let [start, end] = s:store_pos("'[", "']")
|
|
|
|
silent exe "normal! '[V']y"
|
|
|
|
elseif a:type == 'block'
|
|
|
|
let type = '\<C-V>'
|
|
|
|
let [start, end] = s:store_pos("'[", "']")
|
|
|
|
silent exe "normal! `[\<C-V>`]y"
|
|
|
|
else
|
|
|
|
let type = 'v'
|
|
|
|
let [start, end] = s:store_pos("'[", "']")
|
|
|
|
silent exe "normal! `[v`]y"
|
|
|
|
endif
|
|
|
|
let text = @@
|
|
|
|
let @@ = reg
|
|
|
|
let &selection = selection
|
|
|
|
return [text, type, start, end]
|
2013-12-05 12:50:07 -05:00
|
|
|
endfunction
|
|
|
|
|
2013-12-06 13:45:08 -05:00
|
|
|
function! s:exchange_set(type, ...)
|
|
|
|
if !exists('b:exchange')
|
|
|
|
let b:exchange = s:exchange_get(a:type, a:0)
|
|
|
|
else
|
|
|
|
let exchange1 = b:exchange
|
|
|
|
let exchange2 = s:exchange_get(a:type, a:0)
|
|
|
|
|
|
|
|
let cmp = s:compare(exchange1, exchange2)
|
|
|
|
if cmp == 0
|
2013-12-09 13:19:19 -05:00
|
|
|
echohl WarningMsg | echo "Exchange aborted: overlapping text" | echohl None
|
|
|
|
return s:exchange_clear()
|
2013-12-06 13:45:08 -05:00
|
|
|
elseif cmp > 0
|
|
|
|
let [exchange1, exchange2] = [exchange2, exchange1]
|
|
|
|
endif
|
|
|
|
|
|
|
|
call s:exchange(exchange1, exchange2)
|
|
|
|
call s:exchange_clear()
|
|
|
|
endif
|
2013-12-05 12:50:07 -05:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:exchange_clear()
|
2013-12-06 00:26:36 -05:00
|
|
|
unlet! b:exchange
|
2013-12-05 12:50:07 -05:00
|
|
|
endfunction
|
|
|
|
|
2013-12-09 13:19:19 -05:00
|
|
|
" Return < 0 if x comes before y in buffer,
|
|
|
|
" = 0 if x and y overlap in buffer,
|
|
|
|
" > 0 if x comes after y in buffer
|
2013-12-06 13:45:08 -05:00
|
|
|
function! s:compare(x, y)
|
2013-12-09 13:19:19 -05:00
|
|
|
let [xs, xe, xm, ys, ye, ym] = [a:x[2], a:x[3], a:x[1], a:y[2], a:y[3], a:y[1]]
|
|
|
|
let xe = s:apply_mode(xe, xm)
|
|
|
|
let ye = s:apply_mode(ye, ym)
|
|
|
|
|
|
|
|
if (s:compare_pos(xs, ye) <= 0 && s:compare_pos(ys, xe) <= 0) || (s:compare_pos(ys, xe) <= 0 && s:compare_pos(xs, ye) <= 0)
|
|
|
|
" x and y overlap in buffer.
|
|
|
|
return 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
return s:compare_pos(xs, ys)
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:compare_pos(x, y)
|
|
|
|
if a:x[1] == a:y[1]
|
|
|
|
return a:x[2] - a:y[2]
|
|
|
|
else
|
|
|
|
return a:x[1] - a:y[1]
|
|
|
|
endif
|
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:apply_mode(pos, mode)
|
|
|
|
let pos = a:pos
|
2013-12-09 20:40:00 -05:00
|
|
|
if a:mode ==# 'V'
|
2013-12-09 13:19:19 -05:00
|
|
|
let pos[2] = col([pos[1], '$'])
|
|
|
|
endif
|
|
|
|
return pos
|
2013-12-06 13:45:08 -05:00
|
|
|
endfunction
|
|
|
|
|
|
|
|
function! s:store_pos(start, end)
|
|
|
|
return [getpos(a:start), getpos(a:end)]
|
|
|
|
endfunction
|
|
|
|
|
2013-12-05 12:50:07 -05:00
|
|
|
nnoremap <silent> <Plug>Exchange :<C-u>set opfunc=<SID>exchange_set<CR>g@
|
|
|
|
vnoremap <silent> <Plug>Exchange :<C-u>call <SID>exchange_set(visualmode(), 1)<CR>
|
|
|
|
nnoremap <silent> <Plug>ExchangeClear :<C-u>call <SID>exchange_clear()<CR>
|
|
|
|
|
|
|
|
nmap cx <Plug>Exchange
|
|
|
|
vmap cx <Plug>Exchange
|
|
|
|
nmap cxc <Plug>ExchangeClear
|
2013-12-09 17:03:25 -05:00
|
|
|
nmap cxx cx_
|