On Mon, Aug 10, 2009 at 8:55 AM, Edward Peschko <[email protected]> wrote:
> >
> > Try :help user-commands. It will answer all the above questions.
Vim
> > help is very comprehensive, so make the most of it.
>
> yeah, I've seen that section. I understand why no lower case letters,
> but not having underscores is really odd. They are great at making
> things a lot cleaner, especially for those of use who do not like
> camel case.
Anyway, you have the source. I just tried changing this and it seems to
work after changing a line in the function ex_command() from
while (ASCII_ISALNUM(*p))
to
while (ASCII_ISALNUM(*p) || *p == '_')
and making the exact same change to a line in find_command().
Both functions are in ex_docmd.c
Now maybe someone (Bram?) can tell me why this is not a good idea...
Ephraim
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---