kablamo / VimDebug

Integrate your debugger with Vim. Currently supports Perl, Python, and Ruby. This code is very much in beta.
37 stars 7 forks source link

Improve fifos #13

Closed lucs closed 13 years ago

lucs commented 13 years ago

Here it is. It's a big one, but the tests pass, and playing with it, everything looks as ok as it ever was :-)

kablamo commented 13 years ago

Oooh! yeah, I remember now. I wrote the original code and documentation like 8 years ago. Then maybe 4 years ago I added that dbgr fifo because people kept asking to see dbgr output. Apparently I didn't update the documentation very well.

Nice work. Wow you bundled up this request really nicely.

Merged.

lucs commented 13 years ago

The nice bundling is thanks to git. I did pretty much all the changes on a branch that I committed every once in a while, as work progressed. When all was done, I did a 'git rebase -i master', and squashed everything (except the first -- as you'll know when you've read up on 'rebase -i'), then, with that branch stll checked-out, I did 'git reset HEAD~' (which now makes the branch and the index the same as master, but with the working tree holding all the changes), and then added and committed only the parts that belonged together to each commit, with 'git add -p'. Man, I love git.