ID:2604353
 
(See the best response by SpaceManiac.)
It would be very useful if we had a way to get the name, category and other attributes on verbs through code this would be useful for custom input bars and status panels

Best response
The following variables can be accessed on on verb paths:
var/the_verb = /mob/verb/whatever  // or an instance from a "verbs" list
src << the_verb:name
src << the_verb:desc
src << the_verb:category
src << the_verb:invisibility
My hero! *swoons*