vnews 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
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` displays the item under the cursor without focusing the item window
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
@@ -1,4 +1,4 @@
1
1
  class Vnews
2
- VERSION = '0.1.7'
2
+ VERSION = '0.1.8'
3
3
  end
4
4
 
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()
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 7
9
- version: 0.1.7
8
+ - 8
9
+ version: 0.1.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi