soywiki 0.2.8 → 0.2.9

Sign up to get free protection for your applications and to get access to all the features.
data/README.markdown CHANGED
@@ -21,13 +21,13 @@ A quick overview of its characteristics and features:
21
21
  * operates on all POSIX systems (e.g. OS X, Linux, FreeBSD)
22
22
 
23
23
  SoyWiki builds on Vim's strengths as a text editor and interface to the
24
- Unix operating system, SoyWiki makes it possible to create, navigate,
25
- and refactor wiki content at the speed of thought.
24
+ Unix operating system, SoyWiki's primary goal is to make it possible to
25
+ create, navigate, and refactor wiki content at the speed of thought.
26
26
 
27
27
  SoyWiki is good for tracking projects, contacts, ideas, and collecting
28
28
  and organizing research. SoyWiki combines the affordances of notebooks,
29
29
  index cards, and Post-it notes, and adds to them the power of
30
- hyperlinks, search, and automated refactoring.
30
+ hyperlinks, search, revision history, automated refactoring, and more.
31
31
 
32
32
  SoyWiki makes a good writing aid, especially if you do your writing in
33
33
  Vim. You can have SoyWiki open in multiple Vim windows, tabs, and
@@ -162,7 +162,7 @@ namespace `main`. `main.HomePage` is the first page you will see.
162
162
  You can navigate a SoyWiki wiki very quickly with the following
163
163
  commands:
164
164
 
165
- * `CTRL-k` and `CTRL-j` move the cursor directly to the next or previous WikiLink on the page
165
+ * `CTRL-j` and `CTRL-k` move the cursor directly to the next or previous WikiLink on the page
166
166
  * `ENTER` follows the WikiLink under the cursor
167
167
  * `,f` follows the first WikiLink after the cursor
168
168
  * `CTRL-l` opens a WikiLink in a vertical split window; press `CTRL-l` again
@@ -375,8 +375,7 @@ of html pages. Type `soywiki --html` from the root directory of your wiki.
375
375
 
376
376
  ## Extra macros
377
377
 
378
- SoyWiki adds a few convenient Vim macros that you can use anytime.
379
-
378
+ SoyWiki adds a few convenient Vim macros.
380
379
 
381
380
  * `\` in normal mode reformats the current paragraph. It is equivalent to
382
381
  `gwap`. (`:help formatting`)
data/lib/soywiki.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  require 'string_ext'
2
2
 
3
3
  module Soywiki
4
- VERSION = '0.2.8'
4
+ VERSION = '0.2.9'
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
@@ -614,7 +614,7 @@ endfunc
614
614
 
615
615
  func! s:highlight_wikiwords()
616
616
  if (s:is_wiki_page())
617
- " syntax clear
617
+ syntax clear
618
618
  exe "syn match Comment /". s:wiki_link_pattern. "/"
619
619
  exe "syn match Constant /". s:http_link_pattern . "/"
620
620
  endif
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 2
8
- - 8
9
- version: 0.2.8
8
+ - 9
9
+ version: 0.2.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi