# File lib/pry/helpers/command_helpers.rb, line 117 def blocking_flag_for_editor(block) case editor_name when /^emacsclient/ '--no-wait' unless block when /^[gm]vim/ '--nofork' if block when /^jedit/ '-wait' if block when /^mate/, /^subl/ '-w' if block end end