soywiki 0.5.4 → 0.5.5
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/soywiki.rb +1 -1
- data/lib/soywiki.vim +2 -1
- metadata +2 -2
data/README.markdown
CHANGED
@@ -181,7 +181,7 @@ commands:
|
|
181
181
|
while the cursor is on the top line to close the new window
|
182
182
|
* `CTRL-h` does the same, but in a regular split window
|
183
183
|
* `q` closes a split window
|
184
|
-
* `,H` takes you to the `HomePage` of the current namespace if it exists and you're not already on it. Otherwise, it takes you to `main.
|
184
|
+
* `,H` takes you to the `HomePage` of the current namespace if it exists and you're not already on it. Otherwise, it takes you to `main.HomePage`.
|
185
185
|
|
186
186
|
These key mappings may not be very mnemonic, but they are easy to
|
187
187
|
memorize through muscle memory and were chosen to keep the hands
|
data/lib/soywiki.rb
CHANGED
data/lib/soywiki.vim
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
" Maintainer: Daniel Choi <dhchoi@gmail.com>
|
3
3
|
" License: MIT License (c) 2011 Daniel Choi
|
4
4
|
|
5
|
+
let mapleader = ','
|
6
|
+
|
5
7
|
" This regex matches namedspaced WikiWords and unqualified WikiWords
|
6
8
|
let s:wiki_link_pattern = '\C\m\<\([a-z][[:alnum:]_]\+\.\)\?[A-Z][a-z]\+[A-Z]\w*\>'
|
7
9
|
let s:http_link_pattern = 'https\?:[^ >)\]]\+'
|
@@ -672,7 +674,6 @@ else
|
|
672
674
|
call s:load_page(bufname("%"), 0)
|
673
675
|
endif
|
674
676
|
syntax enable
|
675
|
-
let mapleader = ','
|
676
677
|
call s:highlight_wikiwords()
|
677
678
|
|
678
679
|
|