# File lib/hammer_cli/completer.rb, line 11
    def initialize(str)
      @original = str
      if quoted?
        str = str.gsub(/^['"]/, '').gsub(/['"]\s*$/, '')
      else
        str = str.strip
      end
      super(str)
    end