Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Improved option management, add hook management #516

Open
wants to merge 51 commits into
base: master
Choose a base branch
from

Conversation

tony
Copy link
Member

@tony tony commented Feb 7, 2024

Extracted from #513

Warning

APIs below are subject to change (both params, return types, and structures)

Changes

New internal: OptionsMixin

  • show_options(): High level objects, e.g. preserving sparse-array data such as command-alias[1], command-alias[99], and inside of a dataclass object.

    command_alias: SparseArray({0: {'split-pane': 'split-window'})

  • _show_options(): Map of options split up by key, with raw values.

    command-alias[1] split-pane=split-window

  • _show_options_raw(): Raw stdout from tmux show-options

Individual options:

  • show_option(): High level objects, e.g. preserving sparse-array data such as command-alias[1], command-alias[99]

    Not sure if this will scale, but will try to get this:

    > show_option('command-alias')
    SparseArray({0: 'split-pane': 'split-window'})
    
    > show_option('command-alias')[0]
    'split-pane': 'split-window'
    
    > show_option('command-alias[0]')
    'split-pane': 'split-window'
    
  • _show_option():

  • _show_option_raw(): Raw stdout from tmux show-option [option name]

New internal: HooksMixin

New features

  • Window.set_option()

    Learned params:

    • format -> -F
    • unset -> -u
    • global -> -g
    • unset_panes -> -U: Also unset other panse in windows
    • prevent_overwrite: -o
    • suppress_warnings: -q
    • append: -a
  • Window.show_option()

  • Window.show_options()

Breaking changes

Deprecations

  • Deprecated Window.set_window_option() in favor of Window.set_option()
  • Deprecated Window.show_window_option() in favor of Window.show_option()
  • Deprecated Window.show_window_options() in favor of Window.show_options()

Summary by Sourcery

Refactor option and hook management, deprecating old methods.

New Features:

  • Add OptionsMixin to manage tmux options.
  • Add HooksMixin to manage tmux hooks.
  • Introduce new high-level option management methods: show_option(), show_options(), and set_option().
  • Add new high-level hook management methods: run_hook(), set_hook(), show_hooks(), show_hook(), and unset_hook().
  • Implement SparseArray to handle sparse arrays in options and hooks.

Tests:

  • Added tests for new option and hook management methods.

@tony tony force-pushed the improved-options branch from 6cd43f0 to 3399c7d Compare February 7, 2024 16:28
Copy link

codecov bot commented Feb 7, 2024

Codecov Report

Attention: Patch coverage is 74.72527% with 184 lines in your changes missing coverage. Please review.

Project coverage is 79.39%. Comparing base (60d1386) to head (7bff126).

Files with missing lines Patch % Lines
src/libtmux/hooks.py 31.15% 72 Missing and 23 partials ⚠️
src/libtmux/options.py 70.90% 54 Missing and 26 partials ⚠️
src/libtmux/_internal/constants.py 97.62% 4 Missing and 2 partials ⚠️
src/libtmux/_internal/sparse_array.py 80.00% 3 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##           master     #516      +/-   ##
==========================================
- Coverage   81.52%   79.39%   -2.13%     
==========================================
  Files          37       41       +4     
  Lines        2430     3058     +628     
  Branches      368      462      +94     
==========================================
+ Hits         1981     2428     +447     
- Misses        308      441     +133     
- Partials      141      189      +48     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@tony tony mentioned this pull request Feb 7, 2024
@tony tony force-pushed the improved-options branch 4 times, most recently from e5c6186 to 37898a4 Compare February 8, 2024 12:35
@tony tony mentioned this pull request Feb 8, 2024
@tony tony force-pushed the improved-options branch 22 times, most recently from 97d74c1 to 36c5907 Compare February 8, 2024 18:54
tony added 28 commits February 28, 2025 06:35
…evel, "sparse array" objects and for those to set"

This reverts commit 9dc876d.
src/libtmux/window.py:848: error: Returning Any from function declared to return "dict[str, Any]"  [no-any-return]
- Update SparseArray type parameter to include all value types
- Add proper type checking for both dict and SparseArray cases
- Fix return type casting in _show_option method
- Resolve mypy errors related to string indexing of SparseArray
- Add version-specific assertions for terminal features
- Handle rxvt* features in tmux 3.4+
- Make test more robust by checking individual features
WHAT:
- Add comprehensive test coverage for complex option values and edge cases
- Add tests for terminal features edge cases including empty/malformed features
- Add tests for style validation and error handling
- Fix type safety issues in terminal features tests

WHY:
- Ensure proper handling of tmux's complex option types:
  * Empty feature lists (tmux returns [''] not [])
  * Malformed feature strings with colons
  * Features containing spaces and special chars
- Improve type safety by:
  * Adding proper type assertions for runtime checks
  * Using t.cast() to handle complex union types
  * Fixing string vs int indexing for SparseArray
- Make tests more maintainable by:
  * Breaking complex assertions into steps
  * Using descriptive variable names
  * Adding clear comments about tmux behavior
WHAT:
- Add type assertions for style option values
- Convert style values to strings before comparison
- Fix mypy errors in test_style_option_validation

WHY:
- Ensure type safety when handling style option values
- Prevent potential runtime errors from type mismatches
- Make test assertions more robust and explicit
WHAT:
- Add version check for status-format option (added in tmux 2.9)
- Update test assertions to handle version-specific behavior

WHY:
- Ensure tests pass on older tmux versions
- Properly handle version-specific options
- Improve test robustness across tmux versions
WHAT:
- Add version check for update-environment option (added in tmux 3.0)
- Update test assertions to handle version-specific behavior
- Add type checking for update-environment value

WHY:
- Ensure tests pass on older tmux versions
- Properly handle version-specific options
- Improve test robustness across tmux versions
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant