vnews 0.2.8 → 0.2.9
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 -0
- data/lib/vnews.vim +3 -0
- data/lib/vnews/version.rb +1 -1
- metadata +3 -3
data/README.markdown
CHANGED
|
@@ -233,6 +233,7 @@ Search results are sorted by publication date.
|
|
|
233
233
|
|
|
234
234
|
* `:VNConcat` with a visual selection
|
|
235
235
|
* `:[range]VNConcat`
|
|
236
|
+
* `,x` is a short for `:%VNConcat` (concatenate all the items in the list)
|
|
236
237
|
|
|
237
238
|
These commands let you concatenate feed items into a single, continuous
|
|
238
239
|
text document for printing or more leisurely reading.
|
data/lib/vnews.vim
CHANGED
|
@@ -82,6 +82,9 @@ function! s:create_list_window()
|
|
|
82
82
|
nnoremap <silent> <buffer> <leader>k :call <SID>show_adjacent_item(1, 'list-window')<CR>
|
|
83
83
|
command! -bar -nargs=0 -range VNDelete :<line1>,<line2>call s:delete_item()
|
|
84
84
|
command! -bar -nargs=0 -range VNConcat :<line1>,<line2>call s:cat_items()
|
|
85
|
+
nnoremap <silent> <buffer> <leader>x :%VNConcat<CR>
|
|
86
|
+
|
|
87
|
+
|
|
85
88
|
call s:common_mappings()
|
|
86
89
|
if !exists("g:VnewsStarredColor")
|
|
87
90
|
let g:VnewsStarredColor = "ctermfg=green guifg=green guibg=grey"
|
data/lib/vnews/version.rb
CHANGED
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 0.2.
|
|
8
|
+
- 9
|
|
9
|
+
version: 0.2.9
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Daniel Choi
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2011-02-
|
|
17
|
+
date: 2011-02-23 00:00:00 -05:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|