mirror of
https://github.com/pry/pry.git
synced 2022-11-09 12:35:05 -05:00
Refactor the way how ls
displays local names
This commit is contained in:
parent
41ae33a7ed
commit
e36cdc678e
1 changed files with 33 additions and 0 deletions
33
lib/pry/commands/ls/local_names.rb
Normal file
33
lib/pry/commands/ls/local_names.rb
Normal file
|
@ -0,0 +1,33 @@
|
|||
class Pry
|
||||
class Command::Ls < Pry::ClassCommand
|
||||
class LocalNames < Pry::Command::Ls::Formatter
|
||||
|
||||
def initialize(target, has_any_opts, sticky_locals, args)
|
||||
super(target)
|
||||
@has_any_opts = has_any_opts
|
||||
@sticky_locals = sticky_locals
|
||||
@args = args
|
||||
end
|
||||
|
||||
def correct_opts?
|
||||
super || !@has_any_opts && @args.empty?
|
||||
end
|
||||
|
||||
def output_self
|
||||
local_vars = grep.regexp[@target.eval('local_variables')]
|
||||
output_section('locals', format(local_vars))
|
||||
end
|
||||
|
||||
def format(locals)
|
||||
locals.sort_by(&:downcase).map do |name|
|
||||
if @sticky_locals.include?(name.to_sym)
|
||||
color(:pry_var, name)
|
||||
else
|
||||
color(:local_var, name)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Reference in a new issue