简体   繁体   中英

Xdebug - Joonty vdebug switching between windows

So I am debugging my php app with xdebug and https://github.com/joonty/vdebug/ as my vim plugin. When I hit get the debug running i get 4 windows. In other vim plugins I was able to switch between these windows so i could scroll up and down in case the data became too big. I can't seem to figure out how to do this.

Anyone know how to switch between windows with xdebug using vim?

If it is just split window, you can read about it here

:h window-move-cursor

To make it more simple put this mapping into your vimrc

nnoremap <C-J> <C-W><C-J>
nnoremap <C-K> <C-W><C-K>
nnoremap <C-L> <C-W><C-L>
nnoremap <C-H> <C-W><C-H>

Now just press ctrl-J to get to window below current one, etc.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM