hiiro 0.1.196 → 0.1.197
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.
- checksums.yaml +4 -4
- data/lib/hiiro/tmux.rb +4 -2
- data/lib/hiiro/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5e47d3fc9e365815df9169908b507fdb97e212eb86bb2907337a076e1938c37
|
|
4
|
+
data.tar.gz: d0d4420a7629869537c63217dd84e8db875dfba688c8cd2fb3d2f77b3187cb31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 188bda28623629da4f38e87e8e8f3ca36bffab8b5a371f615299db6efb1e88b0094afac3e185d7c2ac04f254c15dc803ffb3320168a97d81e14d47e619f35cd4
|
|
7
|
+
data.tar.gz: 3e1f5cba2c7c449f248e4b5c0bc067fdc09be6caea33040eb76e3067e1452282708314bcf969537eaaf33147229ec4a21ed2b653095649c5c5d726bfd2167e59
|
data/lib/hiiro/tmux.rb
CHANGED
|
@@ -199,11 +199,13 @@ class Hiiro
|
|
|
199
199
|
|
|
200
200
|
# Pane methods
|
|
201
201
|
|
|
202
|
-
def
|
|
202
|
+
def hsplit_window(**kwargs)
|
|
203
|
+
# tmux's horizontal/vertical is the opposite of vim's
|
|
203
204
|
split_window(horizontal: false, **kwargs)
|
|
204
205
|
end
|
|
205
206
|
|
|
206
|
-
def
|
|
207
|
+
def vsplit_window(**kwargs)
|
|
208
|
+
# tmux's horizontal/vertical is the opposite of vim's
|
|
207
209
|
split_window(horizontal: true, **kwargs)
|
|
208
210
|
end
|
|
209
211
|
|
data/lib/hiiro/version.rb
CHANGED