On Fri, Apr 4, 2008 at 3:43 PM, Nico Weber <[EMAIL PROTECTED]> wrote:
> How are the results if you just do `gvim[-re].exe -u NONE -U NONE -c
> wq!`?
Another interpretation of your command sample:
Gvim.exe: 0.395710994776
Gvim-re.exe: 0.495461553009
This is just loading the ext-all.js without filetype detection of
syntax highlighting
---
os.system('gvim.exe -u NONE -U NONE -c "wq!" ext-all.js')
os.system('gvim-re.exe -u NONE -U NONE -c "wq!" ext-all.js')
---
Gvim.exe: 5.40134745013
Gvim-re.exe: 19.7571365646
Loading with syntax highlighting independent of any (g)vimrc settings.
---
os.system('gvim.exe -u NONE -U NONE --cmd "set guioptions+=M" --cmd
"filetype on" --cmd "syntax on" -c "wq!" ext-all.js')
os.system('gvim-re.exe -u NONE -U NONE --cmd "set guioptions+=M" --cmd
"filetype on" --cmd "syntax on" -c "wq!" ext-all.js')
---
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_dev" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---