soywiki 0.5.4 → 0.5.5

Sign up to get free protection for your applications and to get access to all the features.
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.Homepage`.
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
@@ -1,7 +1,7 @@
1
1
  require 'string_ext'
2
2
 
3
3
  module Soywiki
4
- VERSION = '0.5.4'
4
+ VERSION = '0.5.5'
5
5
  WIKI_WORD = /\b([a-z][\w_]+\.)?[A-Z][a-z]+[A-Z]\w*\b/
6
6
  HYPERLINK = %r|\bhttps?://[^ >)\n\]]+|
7
7
 
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
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 4
9
- version: 0.5.4
8
+ - 5
9
+ version: 0.5.5
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi