summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/reline/config.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/reline/config.rb b/lib/reline/config.rb
index 774b06b6fd..16ed7eee05 100644
--- a/lib/reline/config.rb
+++ b/lib/reline/config.rb
@@ -245,22 +245,6 @@ class Reline::Config
rescue ArgumentError
@history_size = 500
end
- when 'bell-style'
- @bell_style =
- case value
- when 'none', 'off'
- :none
- when 'audible', 'on'
- :audible
- when 'visible'
- :visible
- else
- :audible
- end
- when 'comment-begin'
- @comment_begin = value.dup
- when 'completion-query-items'
- @completion_query_items = value.to_i
when 'isearch-terminators'
@isearch_terminators = retrieve_string(raw_value)
when 'editing-mode'