Merge pull request #857 from nandalopes/ascii

Fix YADR success message
This commit is contained in:
Luiz Gonzaga dos Santos Filho
2020-12-15 10:51:35 -08:00
committed by GitHub

View File

@@ -358,13 +358,13 @@ def apply_theme_to_iterm_profile_idx(index, color_scheme_path)
end end
def success_msg(action) def success_msg(action)
puts "" puts %q{
puts " _ _ _ " _ _ _
puts " | | | | | | " | | | | | |
puts " | |___| |_____ __| | ____ " | |___| |_____ __| | ____
puts " |_____ (____ |/ _ |/ ___) " |_____ (____ |/ _ |/ ___)
puts " _____| / ___ ( (_| | | " _____| / ___ ( (_| | |
puts " (_______\_____|\____|_| " (_______\_____|\____|_|
puts "" }
puts "YADR has been #{action}. Please restart your terminal and vim." puts "YADR has been #{action}. Please restart your terminal and vim."
end end