soywiki 0.0.6 → 0.0.7
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 +2 -0
- data/lib/soywiki.rb +1 -1
- data/lib/soywiki.vim +11 -4
- metadata +2 -2
data/README.markdown
CHANGED
|
@@ -297,6 +297,8 @@ anything, and it erases the WikiWord that got expanded.
|
|
|
297
297
|
|
|
298
298
|
* `,x` expands a wiki page seamfully
|
|
299
299
|
* `,X` expands a wiki page seamlessly
|
|
300
|
+
* `,vx` expands a wiki page seamfully and opens on a vertical split
|
|
301
|
+
* `,vX` expands a wiki page seamlessly and opens on a vertical split
|
|
300
302
|
|
|
301
303
|
Both modes of expansion are useful when you want to assemble a long
|
|
302
304
|
piece of writing by using one page as a master outline that links to
|
data/lib/soywiki.rb
CHANGED
data/lib/soywiki.vim
CHANGED
|
@@ -467,7 +467,7 @@ endfunc
|
|
|
467
467
|
" This opens a new buffer with all the lines with just WikiLinks on them
|
|
468
468
|
" expanded (recursively). This is not a wiki buffer but a text buffer
|
|
469
469
|
|
|
470
|
-
func! s:expand(seamless)
|
|
470
|
+
func! s:expand(seamless, vertical)
|
|
471
471
|
if a:seamless == 1
|
|
472
472
|
" seamful, the default
|
|
473
473
|
echom "Expanding seamfully. Please wait."
|
|
@@ -476,7 +476,11 @@ func! s:expand(seamless)
|
|
|
476
476
|
echom "Expanding seamlessly. Please wait."
|
|
477
477
|
let res = system(s:expand_command . " seamful " . bufname('%'))
|
|
478
478
|
endif
|
|
479
|
-
|
|
479
|
+
if a:vertical
|
|
480
|
+
vnew
|
|
481
|
+
else
|
|
482
|
+
new
|
|
483
|
+
endif
|
|
480
484
|
setlocal buftype=nofile "scratch buffer for viewing; user can write
|
|
481
485
|
silent! put =res
|
|
482
486
|
silent! 1delete
|
|
@@ -548,8 +552,11 @@ func! s:prep_buffer()
|
|
|
548
552
|
command! -buffer SWBlame :call s:show_blame()
|
|
549
553
|
noremap <buffer> <leader>b :call <SID>show_blame()<CR>
|
|
550
554
|
|
|
551
|
-
noremap <buffer> <leader>x :call <SID>expand(0)<CR>
|
|
552
|
-
noremap <buffer> <leader>X :call <SID>expand(1)<CR>
|
|
555
|
+
noremap <buffer> <leader>x :call <SID>expand(0,0)<CR>
|
|
556
|
+
noremap <buffer> <leader>X :call <SID>expand(1,0)<CR>
|
|
557
|
+
noremap <buffer> <leader>vx :call <SID>expand(0,1)<CR>
|
|
558
|
+
noremap <buffer> <leader>vX :call <SID>expand(1,1)<CR>
|
|
559
|
+
noremap <buffer> <leader>VX :call <SID>expand(1,1)<CR>
|
|
553
560
|
|
|
554
561
|
noremap <silent> <leader>? :call <SID>show_help()<cr>
|
|
555
562
|
|