blob: b76eb274c70baacc4213d9284a870a80f89f1a8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
imap <C-b> <Left>
imap <C-f> <Right>
imap <C-n> <Down>
imap <C-p> <Up>
imap <C-a> <C-o>:call <SID>home()<CR>
imap <C-e> <End>
imap <C-d> <Del>
imap <C-h> <BS>
imap <C-k> <C-r>=<SID>kill_line()<CR>
cmap <C-p> <Up>
cmap <C-n> <Down>
cmap <C-b> <Left>
cmap <C-f> <Right>
cmap <C-a> <Home>
cmap <C-e> <End>
cnoremap <C-d> <Del>
cnoremap <C-h> <BS>
cnoremap <C-k> <C-f>D<C-c><C-c>:<Up>
function! s:home()
let start_col = col('.')
normal! ^
if col('.') == start_col
normal! 0
endif
return ''
endfunction
function! s:kill_line()
let [text_before_cursor, text_after_cursor] = s:split_line_text_at_cursor()
if len(text_after_cursor) == 0
normal! J
else
call setline(line('.'), text_before_cursor)
endif
return ''
endfunction
function! s:split_line_text_at_cursor()
let line_text = getline(line('.'))
let text_after_cursor = line_text[col('.')-1 :]
let text_before_cursor = (col('.') > 1) ? line_text[: col('.')-2] : ''
return [text_before_cursor, text_after_cursor]
endfunction
function! s:toggle_quickfix()
if empty(filter(getwininfo(), 'v:val.quickfix'))
copen
else
cclose
endif
endfunction
nnoremap <silent> <leader>c :call s:toggle_quickfix()<cr>
|