class Tmux::Options::BellActionOption

@api private @see Option

Public Class Methods

to_tmux(value) click to toggle source

@param (see Option.to_tmux) @return (see Option.to_tmux) @see Option.to_tmux @api private

Calls superclass method
# File lib/tmux/options/bell_action_option.rb, line 12
def to_tmux(value)
  raise ArgumentError unless [:any, :none, :current, :default].include?(value)
  super
end