soywiki 0.0.7 → 0.0.8

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/bin/soywiki-expand CHANGED
@@ -18,7 +18,7 @@ def expand(file, mode, level=0)
18
18
  PROCESSED_FILES << file
19
19
  lines = File.readlines(file)
20
20
  if mode == 'seamless'
21
- lines.shift 2 # strips title
21
+ lines.shift # strips title
22
22
  end
23
23
  lines = lines.join.strip.split("\n")
24
24
  lines.each do |line|
data/lib/soywiki.rb CHANGED
@@ -27,7 +27,7 @@ end
27
27
 
28
28
 
29
29
  module Soywiki
30
- VERSION = '0.0.7'
30
+ VERSION = '0.0.8'
31
31
  WIKI_WORD = /\b([a-z][\w_]+\.)?[A-Z][a-z]+[A-Z]\w*\b|\.[A-Z][a-z]+[A-Z]\w*\b/
32
32
 
33
33
  def self.run
data/lib/soywiki.vim CHANGED
@@ -477,7 +477,7 @@ func! s:expand(seamless, vertical)
477
477
  let res = system(s:expand_command . " seamful " . bufname('%'))
478
478
  endif
479
479
  if a:vertical
480
- vnew
480
+ botright vnew
481
481
  else
482
482
  new
483
483
  endif
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 7
9
- version: 0.0.7
8
+ - 8
9
+ version: 0.0.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Daniel Choi