aboutsummaryrefslogtreecommitdiff
path: root/plugin/colon_operator.vim
blob: 5a30115683cfc786cef7a3a6a609c049dab52020 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"
" colon_operator.vim: Select ranges and run colon commands on them, rather
" like the ! operator but for colon commands like :sort.
"
" Author: Tom Ryder <tom@sanctum.geek.nz>
" License: Same as Vim itself
"
if exists('loaded_colon_operator') || &compatible
  finish
endif
if v:version < 700
  finish
endif
let loaded_colon_operator = 1

" Set up mapping
nnoremap <expr> <silent> <unique>
      \ <Plug>(ColonOperator)
      \ colon_operator#Map()