We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 705c66f commit fa117eeCopy full SHA for fa117ee
lib/ruby-debug-ide/attach/native_debugger.rb
@@ -60,8 +60,8 @@ def get_response
60
content = ''
61
loop do
62
line = @pipe.readline
63
- break if check_delimiter(line)
64
DebugPrinter.print_debug('respond line: ' + line)
+ break if check_delimiter(line)
65
next if line =~ /\(lldb\)/ # lldb repeats your input to its output
66
content += line
67
end
@@ -98,6 +98,7 @@ def continue
98
@pipe.puts 'c'
99
100
101
+ DebugPrinter.print_debug('respond line: ' + line)
102
break if line =~ /#{Regexp.escape(@tbreak)}/
103
104
get_response
0 commit comments