corresponded to python3

This commit is contained in:
nve3pd 2017-09-28 21:30:32 +09:00
commit 2b841ff6f2
2 changed files with 12 additions and 2 deletions

View file

@ -9,7 +9,11 @@ if !executable('nim')
echoerr "the Nim compiler must be in your system's PATH"
endif
exe 'pyfile ' . fnameescape(s:plugin_path) . '/nim_vim.py'
if has("python3")
exe 'py3file ' . fnameescape(s:plugin_path) . '/nim_vim.py'
else
exe 'pyfile ' . fnameescape(s:plugin_path) . '/nim_vim.py'
endif
fun! nim#init()
let cmd = printf("nim --dump.format:json --verbosity:0 dump %s", s:CurrentNimFile())

View file

@ -1,4 +1,10 @@
import threading, Queue, subprocess, signal, os, platform, getpass
from sys import version_info
import threading, subprocess, signal, os, platform, getpass
if version_info[0] == 3:
import queue as Queue
else:
import Queue
try:
import vim