Hello All,
I want to develop a plugin just using vim scripts for the verilog language.
In the plugin I have functions that require arguments that are words used in
the current open buffers.
On the command line, I want to autocomplete these words that are arguments
to functions.
For example:
:call function1("last_<Tab>","first_<Tab>")
In open buffers, the words called last_buffer_value and first_buffer_value
are used. So when I hit <Tab> I want that word to be completed so the result
would be
:call function1("last_buffer_value","first_buffer_value")
Is there a way to do this?
Thanks in advance,
Dan Fabrizio