soywiki 0.6.5 → 0.6.6
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 +4 -4
- data/lib/soywiki.rb +1 -1
- data/lib/soywiki.vim +4 -4
- metadata +2 -2
data/README.markdown
CHANGED
@@ -198,8 +198,8 @@ commands:
|
|
198
198
|
while the cursor is on the top line to close the new window
|
199
199
|
* `CTRL-h` does the same, but in a regular split window
|
200
200
|
* `q` closes a split window
|
201
|
-
* `,
|
202
|
-
* `,
|
201
|
+
* `,h` takes you to the `HomePage` of the current namespace
|
202
|
+
* `,H` takes you to `main.HomePage`
|
203
203
|
|
204
204
|
These key mappings may not be very mnemonic, but they are easy to
|
205
205
|
memorize through muscle memory and were chosen to keep the hands
|
@@ -427,8 +427,8 @@ anything, and it erases the WikiWord that got expanded.
|
|
427
427
|
|
428
428
|
* `,x` expands a wiki page seamfully and opens on a vertical split
|
429
429
|
* `,X` expands a wiki page seamlessly and opens on a vertical split
|
430
|
-
* `,
|
431
|
-
* `,
|
430
|
+
* `,xx` expands a wiki page seamfully and opens on normal split
|
431
|
+
* `,XX` expands a wiki page seamlessly and opens on a normal split
|
432
432
|
* `q` closes the expanded view window
|
433
433
|
|
434
434
|
Both modes of expansion are useful when you want to assemble a long
|
data/lib/soywiki.rb
CHANGED
data/lib/soywiki.vim
CHANGED
@@ -642,11 +642,11 @@ func! s:prep_buffer()
|
|
642
642
|
|
643
643
|
noremap <buffer> <leader>x :call <SID>expand(0,1)<CR>
|
644
644
|
noremap <buffer> <leader>X :call <SID>expand(1,1)<CR>
|
645
|
-
noremap <buffer> <leader>
|
646
|
-
noremap <buffer> <leader>
|
645
|
+
noremap <buffer> <leader>xx :call <SID>expand(0,0)<CR>
|
646
|
+
noremap <buffer> <leader>XX :call <SID>expand(1,0)<CR>
|
647
647
|
|
648
|
-
noremap <buffer> <leader>
|
649
|
-
noremap <buffer> <leader>
|
648
|
+
noremap <buffer> <leader>h :call <SID>goto_homepage(0)<CR>
|
649
|
+
noremap <buffer> <leader>H :call <SID>goto_homepage(1)<CR>
|
650
650
|
|
651
651
|
noremap <silent> <leader>? :call <SID>show_help()<cr>
|
652
652
|
|