How can I access the arguments that were given to Vim on the command line under Windows?
I'm looking for the the equivalent to argv[]
in C.
Under linux you can read /proc/self/cmdline
.
Example:
vim -c ":echo split( readfile( \"/proc/self/cmdline\", 1 )[0], \"\n\" )"
print
[
'vim',
'-c',
':echo split( readfile( "/proc/self/cmdline", 1 )[0], "\n" )'
]
argc()
and argv()
don't work. They just return number of files.
Example:
vim -c ':echo "argc:" . argc() . ", argv:" . string( argv() )' file1 file2
print
argc:2, argv:['file1', 'file2']
And maybe also
:help argument-list
, just to be sure.Simple example: