EngineHub / Piston

A generic command system, with tie-ins to many Minecraft platforms such as Bukkit, Forge, and Sponge.
GNU General Public License v3.0
17 stars 3 forks source link

Support automatic camel case names -> normal case names #32

Open DarkArc opened 4 years ago

DarkArc commented 4 years ago

Given a command signature:

public void cmd(@Arg(...) String fooBar) {
}

It would be preferable for fooBar to be converted into <foo bar>, <foo_bar>, or <foo-bar> rather than <fooBar> in the help text.