1

Re: Custom Functions

Is it possible to use a .vimrc file to create your own functions?
I wanted to incorporate some alignment functions such as: http://vim.sourceforge.net/tips/tip.php?tip_id=894

Thanks,
akshay

2

Re: Custom Functions

Hello Akshay,

You can set up a .viemurc file (better call it "_viemurc", in your HOME folder (typically, "C:\Documents and Settings\{username}"), but viml (vim's scripting language) is not supported. The file can hold mappings and :set initializations, but nothing else.

This can actually be done with VS's built-in macro language. I know it's less convenient than just bringing in vim script code, but the effort to support viml would be exceedingly huge!

Best regards,

  Jon