Sha256: 106ed11530b0a71bbfcfc98a2da262b0e21c27928a2a8b33a48b1125487c23a3

Contents?: true

Size: 1.27 KB

Versions: 10

Compression:

Stored size: 1.27 KB

Contents

module Vagrant
  module Util
    module ANSIEscapeCodeRemover
      # Removes ANSI escape code sequences from the text and returns
      # it.
      #
      # This removes all the ANSI escape codes listed here along with
      # the escape codes for VT100 terminals:
      #
      # http://ascii-table.com/ansi-escape-sequences.php
      def remove_ansi_escape_codes(text)
        # An array of regular expressions which match various kinds
        # of escape sequences. I can't think of a better single regular
        # expression or any faster way to do this.
        matchers = [/\e\[\d*[ABCD]/,       # Matches things like \e[4D
                    /\e\[(\d*;)?\d*[HF]/,  # Matches \e[1;2H or \e[H
                    /\e\[(s|u|2J|K)/,      # Matches \e[s, \e[2J, etc.
                    /\e\[=\d*[hl]/,        # Matches \e[=24h
                    /\e\[\?[1-9][hl]/,     # Matches \e[?2h
                    /\e\[20[hl]/,          # Matches \e[20l]
                    /\e[DME78H]/,          # Matches \eD, \eH, etc.
                    /\e\[[0-3]?[JK]/,      # Matches \e[0J, \e[K, etc.
                    ]

        # Take each matcher and replace it with emptiness.
        matchers.each do |matcher|
          text.gsub!(matcher, "")
        end

        text
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
vagrant-unbundled-2.3.6.0 lib/vagrant/util/ansi_escape_code_remover.rb
tamtam-vagrant-reload-1.2.1 vendor/cache/vagrant-2092df529ae7/lib/vagrant/util/ansi_escape_code_remover.rb
vagrant-unbundled-2.3.3.0 lib/vagrant/util/ansi_escape_code_remover.rb
vagrant-unbundled-2.3.2.0 lib/vagrant/util/ansi_escape_code_remover.rb
vagrant-unbundled-2.2.19.0 lib/vagrant/util/ansi_escape_code_remover.rb
vagrant-unbundled-2.2.18.0 lib/vagrant/util/ansi_escape_code_remover.rb
vagrant-unbundled-2.2.16.0 lib/vagrant/util/ansi_escape_code_remover.rb
vagrant-unbundled-2.2.14.0 lib/vagrant/util/ansi_escape_code_remover.rb
vagrant-aws-mkubenka-0.7.2.pre.24 vendor/bundle/ruby/2.7.0/bundler/gems/vagrant-22795b161bf6/lib/vagrant/util/ansi_escape_code_remover.rb
vagrant-unbundled-2.2.10.0 lib/vagrant/util/ansi_escape_code_remover.rb