i2cssh 1.3.3 → 1.3.4
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/VERSION +1 -1
- data/i2cssh.gemspec +1 -1
- data/lib/i2cssh.rb +3 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.4
|
data/i2cssh.gemspec
CHANGED
data/lib/i2cssh.rb
CHANGED
@@ -51,12 +51,14 @@ class I2Cssh
|
|
51
51
|
end
|
52
52
|
|
53
53
|
def split_session
|
54
|
+
first = true
|
54
55
|
2.upto @columns do
|
55
56
|
@sys_events.keystroke "d", :using => :command_down
|
56
57
|
end
|
57
58
|
2.upto @rows do
|
58
59
|
1.upto @columns do
|
59
|
-
@sys_events.key_code 123, :using => [:command_down, :option_down]
|
60
|
+
@sys_events.key_code 123, :using => [:command_down, :option_down] unless first
|
61
|
+
first = false
|
60
62
|
end
|
61
63
|
@columns.times do |x|
|
62
64
|
@sys_events.keystroke "D", :using => :command_down
|
metadata
CHANGED