1

When debugging PHP with Geben and xdebug, how do you jump to the currently paused line (The line with a => mark in the margin) from any buffer.

phils
  • 48,657
  • 3
  • 76
  • 115
tjb
  • 197
  • 1
  • 7

1 Answers1

1

w calls geben-where:

geben-where is an interactive compiled Lisp function in `geben.el'.

(geben-where)

Move to the current breaking point.

It is also bound to C-cC-l which, from the comments, may be consistent with gud behaviour and bindings.

phils
  • 48,657
  • 3
  • 76
  • 115
  • Thanks, do you know if there are any tutorials on Geben anywhere, it's a big package and I'm having trouble figuring out several issues – tjb Sep 26 '18 at 07:42
  • Not that I know of, sorry. This site is a good place to ask those questions, though. – phils Sep 26 '18 at 07:49
  • https://github.com/ahungry/geben has useful information of course, if by some chance you hadn't already seen that. – phils Sep 26 '18 at 08:04
  • Yeah, I did, but its a little bit thin. I think I will probably be posting more questions :) – tjb Sep 26 '18 at 08:07