I will show you how to easily output debug (binding.pry) that you will definitely use when developing with Rails with VScode.
By changing the value of "prefix", you can convert any character to binding.pry instead of pry.
ruby.json
"Debug Console": {
"prefix": "pry",
"body": "binding.pry\n",
"description": "A runtime developer console"
}
Recommended Posts