When setting up xdebug on new sites, I usually copy the base php.ini config from some previous project.
Pressing CMS-A & CMD-C (MacOS latest version) will also copy the line numbers which I then need to clean up before pasting to the new project.
1
xdebug.mode = debug
2
xdebug.start_with_request = yes
3
xdebug.client_host = 192.168.1.37
4
xdebug.client_port = 9003
5
xdebug.log = /tmp/xdebug.log
Would it be possible to adjust this behavior (it’s such a minor nitpick that I am refraining from calling it a bug)?
