tarazed 0.2.3 → 0.2.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/tarazed/session.rb +4 -0
- data/lib/tarazed/version.rb +1 -1
- data/lib/tarazed/vt.rb +5 -0
- data/sig/tarazed.rbs +2 -0
- 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: 233b24e764e297bf6546e5c68452f4050f011b022c7300bdd0be3c7e36709069
|
|
4
|
+
data.tar.gz: b188674da5a0ef96029c2a22a4b708bfc195ae4b7860fb13c117469ef2342600
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6f127d20234ebb1d5114afdf97c7b71c02826e55f734c9619cc03629651ebcbe6466c9b5677f2c45ec7f80dcea763b2d0b9f43513e22f37ed98b66ebbb260b60
|
|
7
|
+
data.tar.gz: 1bca1ddcbe7456c40e82e9db0a1edd2328b8c8e8f11772196c0295907f71b1b96d696eaae5e3c513dbdce48b355a44d71fa8dd1e7766aeb5595718fbd61c9b59
|
data/CHANGELOG.md
CHANGED
data/lib/tarazed/session.rb
CHANGED
data/lib/tarazed/version.rb
CHANGED
data/lib/tarazed/vt.rb
CHANGED
data/sig/tarazed.rbs
CHANGED
|
@@ -125,6 +125,7 @@ module Tarazed
|
|
|
125
125
|
|
|
126
126
|
def initialize: (?Grid grid, ?command_limit: Integer, ?on_command: ^(Command) -> untyped) ?{ (String) -> void } -> void
|
|
127
127
|
def commands: () -> Array[Command]
|
|
128
|
+
def clear_commands: () -> self
|
|
128
129
|
def feed: (String bytes) -> self
|
|
129
130
|
def paste: (String text) -> String
|
|
130
131
|
def mouse: (button: Symbol | Integer | nil, column: Integer, row: Integer, ?action: mouse_action,
|
|
@@ -173,6 +174,7 @@ module Tarazed
|
|
|
173
174
|
?queue_limit_bytes: Integer, ?on_command: ^(Command) -> untyped) -> void
|
|
174
175
|
def screen: () -> Grid
|
|
175
176
|
def commands: () -> Array[Command]
|
|
177
|
+
def clear_commands: () -> self
|
|
176
178
|
def cwd: () -> String
|
|
177
179
|
def input: (String bytes) -> Integer
|
|
178
180
|
def pump: (?timeout: Numeric) -> bool
|