blob: a71adb94a93e42bcb9d9f5e573fbe8e78e5f45a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# frozen_string_literal: true
class Pry
class Command
class ShellMode < Pry::ClassCommand
match 'shell-mode'
group 'Input and Output'
description 'Toggle shell mode. Bring in pwd prompt and file completion.'
banner <<-'BANNER'
Toggle shell mode. Bring in pwd prompt and file completion.
BANNER
def process
state.disabled ^= true
if state.disabled
state.prev_prompt = pry_instance.prompt
pry_instance.prompt = Pry::Prompt[:shell]
else
pry_instance.prompt = state.prev_prompt
end
end
end
Pry::Commands.add_command(Pry::Command::ShellMode)
Pry::Commands.alias_command 'file-mode', 'shell-mode'
end
end
|