Merge pull request #65 from nve3pd/master

corresponded to python3
This commit is contained in:
zah 2017-10-02 17:13:45 +03:00 committed by GitHub
commit b531222c20
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