mui 0.4.0 → 0.4.1
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 +8 -0
- data/lib/mui/key_handler/normal_mode.rb +1 -2
- data/lib/mui/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: d3555a781cf03a72f45aece354917a6221b12915deb638589fb3678d21764e16
|
|
4
|
+
data.tar.gz: 64ffe746691655d9e479e263ec023953f1a6fae20a9984cffea2da323c845fd0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4b3cd55455549c90e5b229d028e12b735f50c4cb1e5bd7e0fb7f84e3d5fc7f2a82097ac10e50cf0b52a304076460adab2e6b01671cfd32629f225888d4a8ff8c
|
|
7
|
+
data.tar.gz: ee99312173108b0efc849791a426ca247317999cf2b0b5ec3e99e3cbf120086b945f85c8fa46db25a59cd24e7b5784b1414465fd8b4a71bea37b4641fc88c64e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.4.1] 2025-12-20
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
- Fixed Ctrl+w window commands not working in new tabs
|
|
7
|
+
- Previously, Ctrl+w w/h/j/k/l/s/v/c/o commands would use the first tab's WindowManager even after switching tabs
|
|
8
|
+
- `@window_command` was memoized with the initial tab's WindowManager
|
|
9
|
+
- Now creates WindowCommand with current tab's WindowManager on each invocation
|
|
10
|
+
|
|
3
11
|
## [0.4.0] 2025-12-19
|
|
4
12
|
|
|
5
13
|
### Added
|
|
@@ -13,7 +13,6 @@ module Mui
|
|
|
13
13
|
@search_state = search_state
|
|
14
14
|
@pending_motion = nil
|
|
15
15
|
@pending_register = nil
|
|
16
|
-
@window_command = nil
|
|
17
16
|
initialize_operators
|
|
18
17
|
end
|
|
19
18
|
|
|
@@ -409,7 +408,7 @@ module Mui
|
|
|
409
408
|
return result(message: "Window commands not available")
|
|
410
409
|
end
|
|
411
410
|
|
|
412
|
-
@window_command
|
|
411
|
+
@window_command = WindowCommand.new(window_manager)
|
|
413
412
|
@window_command.handle(key)
|
|
414
413
|
clear_pending
|
|
415
414
|
end
|
data/lib/mui/version.rb
CHANGED