vnews 0.1.7 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +1 -1
- data/lib/vnews/version.rb +1 -1
- data/lib/vnews.vim +1 -0
- metadata +2 -2
data/README.markdown
CHANGED
@@ -130,7 +130,7 @@ in one consolidated list.
|
|
130
130
|
* `k` moves down the item list
|
131
131
|
* `ENTER` from the list window displays the item under the cursor and focuses the item window
|
132
132
|
* `ENTER` from item window returns focus to the list window
|
133
|
-
* `C-l`
|
133
|
+
* `C-l` and `l` display the item under the cursor without focusing the item window
|
134
134
|
* `SPACE` toggles full-screen mode for the current window.
|
135
135
|
* `C-j` shows the next item without changing window focus
|
136
136
|
* `C-k` shows the previous item without changing window focus
|
data/lib/vnews/version.rb
CHANGED
data/lib/vnews.vim
CHANGED
@@ -74,6 +74,7 @@ function! s:create_list_window()
|
|
74
74
|
setlocal statusline=%!VnewsStatusLine()
|
75
75
|
nnoremap <silent> <buffer> <cr> :call <SID>show_item_under_cursor(1)<CR>
|
76
76
|
nnoremap <silent> <buffer> <c-l> :call <SID>show_item_under_cursor(1)<CR>:wincmd p<CR>
|
77
|
+
nnoremap <silent> <buffer> l :call <SID>show_item_under_cursor(1)<CR>:wincmd p<CR>
|
77
78
|
nnoremap <silent> <buffer> <c-j> :call <SID>show_adjacent_item(0, 'list-window')<CR>
|
78
79
|
nnoremap <silent> <buffer> <c-k> :call <SID>show_adjacent_item(1, 'list-window')<CR>
|
79
80
|
command! -bar -nargs=0 -range VNDelete :<line1>,<line2>call s:delete_item()
|