Hi Eric,
On 2/14/07, Eric Leenman <[EMAIL PROTECTED]> wrote:
Hi Yeggapan,
[...]
>You can try using the workspace manager plugin:
>
>http://vim.sourceforge.net/scripts/script.php?script_id=1410
[...]
I got it so far working.
One question.
When I give the command "af"(AddFile) in the filebuffer, the plugin comes
with
the message "give file name" (or something like that)
Do you then need to type the complete path (i.e.
C:\Projects\FPGA\VHDL\test.vhdl)
Or can you browse to it ?
In the prompt for adding a file to the workspace, you have to enter
the filename.
If you are using Vim7, you can make the attached change to the workspace
plugin to get filename completion at this prompt. With this change, you can
complete directory and filenames at the prompt.
- Yegappan
***************
*** 521,527 ****
let file_names = a:args
if file_names == ''
! let file_names = input("Enter file name(s): ")
if file_names == ''
return
endif
--- 521,527 ----
let file_names = a:args
if file_names == ''
! let file_names = input("Enter file name(s): ", '', 'file')
if file_names == ''
return
endif