It seems that when placing ClosureHelpers.py in the Packages/User directory for Sublime Text 3, the file cannot correctly import SublimeREPL. It seems I was able to change the import statements to:
import re, sublime, sublime_plugin
from SublimeREPL.sublimerepl import manager
import SublimeREPL.text_transfer as text_transfer
I'm not sure if 100% of the functionality of the helpers are working in ST3, but hopefully this can help someone else out who has seen similar issues!
It seems that when placing
ClosureHelpers.pyin thePackages/Userdirectory for Sublime Text 3, the file cannot correctly import SublimeREPL. It seems I was able to change the import statements to:I'm not sure if 100% of the functionality of the helpers are working in ST3, but hopefully this can help someone else out who has seen similar issues!