vim-ruby-debugger
vim-ruby-debugger copied to clipboard
Vim plugin for debugging Ruby applications (using ruby-debug-ide gem)
In .vimrc I have: ``` let g:ruby_debugger_progname = 'mvim' let g:ruby_debugger_debug_mode=1 ``` I launch debugger like this: ``` :Rdebugger 'script/rails server' ``` Server and debugger starts successfully. Then I set...
Hi, I'm using Ubuntu 12.04, ruby 1.9.3p327, vim 7.4, debugger 1.6.1 `:echo has("signs") && has("clientserver") && has("ruby") && v:version > 700` returns '1' Started vim: `vim --servername VIM` ruby_debugger_log Vim...
Every time I run `:Rdebugger` I get message `Command terminated`. Tested with ruby 2.0 and 1.9.3 and mvim 7.4. Any ideas why it happens?
This is not an issue, but a feature request. It would be great to have the ability to watch some expression, like 'params' or 'User.last' or "@my_attribute". Currently it is...
Hey, I am using gvim on ubuntu, I have also tested the same scenario of trying to debug a rails application from vim inside a terminal however it just does...
Hi, This seems like it should be the best plugin ever, if only I could get it to do anything. I've followed all the instructions and everything seems to work,...
White running a :RdbTest for a specific functional test (with breakpoints), my MacVIm application crashed (closed) and the terminal displayed the following output. > $ (eval):55: [BUG] terminated node (0x4ba47e0)...
Hi! I'm using rvm and Rails 3 (with Ruby 1.8.7), and I'm trying to get the debugger going. I've done: ``` gem install ruby-debug-ide ``` I also have the latest...
Hello. I use ruby-1.9.3-p0. I have simple plain script. | set one breakpoint and run rebugger: :Rdebugger my_script.rb Debugger started successful but my code don't execute :(. Why?
I just downloaded the latest package and installed it. I am using MacVim. After starting the server using :Rdebugger script/rails s, I tried to set breakpoints using b, I got...