Le vendredi 5 janvier 2018 14:32:36 UTC+1, Ni Va a écrit :
> It's OK, after relaunch gvim, it echoes 1.
>
>
>
> Le 5 janv. 2018 13:59, "Ni Va" <[email protected]> a écrit :
> Le vendredi 5 janvier 2018 13:30:22 UTC+1, Ni Va a écrit :
>
> > This is it!
>
> >
>
> >
>
> > Without space around '=',
>
> > without '"' comment around dll name => works
>
> >
>
> >
>
> >
>
> >
>
> >
>
> > set luadll=lua53.dll
>
> > set pythondll=python27.dll
>
> > set pythonthreedll=python36.dll
>
> > set rubydll=x64-msvcrt-ruby240.dll
>
> >
>
> >
>
> > Thank you a lot James, Ken and hoe that can help others users.
>
> > Niva
>
> >
>
> >
>
> >
>
> >
>
> > 2018-01-05 13:23 GMT+01:00 James McCoy <[email protected]>:
>
> > On Fri, Jan 05, 2018 at 01:22:52AM -0800, Ni Va wrote:
>
> >
>
> > > set luadll = "lua53.dll"
>
> >
>
> > > set pythondll = "python27.dll"
>
> >
>
> > > set pythonthreedll = "python36.dll"
>
> >
>
> > > set rubydll = "x64-msvcrt-ruby240.dll"
>
> >
>
> >
>
> >
>
> > First, you can't have whitespace around the ‘=’ when setting an option.
>
> >
>
> >
>
> >
>
> > Second, Vim's comment character is ‘"’ so even if whitespace were
>
> >
>
> > allowed, this would be setting the options to the empty string.
>
> >
>
> >
>
> >
>
> > So, none of these options have been set as you expect. You can verify
>
> >
>
> > this by running “:set luadll?”.
>
> >
>
> >
>
> >
>
> > Cheers,
>
> >
>
> > --
>
> >
>
> > James
>
> >
>
> > GPG Key: 4096R/91BF BF4D 6956 BD5D F7B7 2D23 DFE6 91AE 331B A3DB
>
> >
>
> >
>
> >
>
> >
>
> >
>
> > --
>
> >
>
> > --
>
> >
>
> > You received this message from the "vim_dev" maillist.
>
> >
>
> > Do not top-post! Type your reply below the text you are replying to.
>
> >
>
> > For more information, visit http://www.vim.org/maillist.php
>
> >
>
> >
>
> >
>
> > ---
>
> >
>
> > You received this message because you are subscribed to a topic in the
> > Google Groups "vim_dev" group.
>
> >
>
> > To unsubscribe from this topic, visit
> > https://groups.google.com/d/topic/vim_dev/GftOsk8jhJU/unsubscribe.
>
> >
>
> > To unsubscribe from this group and all its topics, send an email to
> > [email protected].
>
> >
>
> > For more options, visit https://groups.google.com/d/optout.
>
>
>
> Why :has('python3') returns 0 ?
>
>
>
> --
>
> --
>
> You received this message from the "vim_dev" maillist.
>
> Do not top-post! Type your reply below the text you are replying to.
>
> For more information, visit http://www.vim.org/maillist.php
>
>
>
> ---
>
> You received this message because you are subscribed to a topic in the Google
> Groups "vim_dev" group.
>
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/vim_dev/GftOsk8jhJU/unsubscribe.
>
> To unsubscribe from this group and all its topics, send an email to
> [email protected].
>
> For more options, visit https://groups.google.com/d/optout.
Finally don't understand some things. I deploy my distribution onto another
machine without Python framework. just dynamic lib python36.dll
VIM - Vi IMproved 8.0 (2016 Sep 12, compiled Jan 10 2018 17:55:35)
MS-Windows 64-bit GUI version with OLE support
Included patches: 1-1428
Huge version with GUI. Features included (+) or not (-):
+acl +clipboard +digraphs +folding
+linebreak -mzscheme +python3/dyn +tag_binary
+user_commands -xim
+arabic +cmdline_compl +directx -footer
+lispindent -netbeans_intg +quickfix +tag_old_static
+vertsplit -xpm_w32
+autocmd +cmdline_hist -dnd +gettext/dyn
+listcmds +num64 +reltime -tag_any_white
+virtualedit -xterm_save
+autoservername +cmdline_info -ebcdic -hangul_input
+localmap +ole +rightleft -tcl
+visual
+balloon_eval +comments +emacs_tags +iconv/dyn
+lua/dyn +packages +ruby/dyn -termguicolors
+visualextra
-balloon_eval_term +conceal +eval +insert_expand
+menu +path_extra +scrollbind +terminal
+viminfo
+browse +cryptv +ex_extra +job
+mksession -perl +signs -tgetent
+vreplace
++builtin_terms -cscope +extra_search +jumplist
+modify_fname +persistent_undo +smartindent -termresponse
+wildignore
+byte_offset +cursorbind +farsi +keymap
+mouse -postscript +startuptime +textobjects
+wildmenu
+channel +cursorshape +file_in_path +lambda
+mouseshape +printer +statusline +timers
+windows
+cindent +dialog_con_gui +find_in_path +langmap
+multi_byte +profile -sun_workshop +title
+writebackup
+clientserver +diff +float +libcall
+multi_lang -python +syntax +toolbar
-xfontset
put=$path says that :
c:/Users/Administrator/AppData/Local/Temp/Vim/vim80/extDlls/lua
c:/Users/Administrator/AppData/Local/Temp/Vim/vim80/extDlls/ruby
c:/Users/Administrator/AppData/Local/Temp/Vim/vim80/extDlls/rg
c:/Users/Administrator/AppData/Local/Temp/Vim/vim80/extDlls/python/x64
set pythonthreedll= echoes pythonthreedll=python36.dll
echo system('where python36.dll') returns
c:/Users/Administrator/AppData/Local/Temp/Vim/vim80/extDlls/python/x64
1/ Why echo('python3') returns 0 ?
2/ Why python3 print("hello py3") retuens E370:Could not load library
python36.dll
Thank you for idea
Niva
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.