Clay Sweetser

Results 98 comments of Clay Sweetser

I've started writing a python parser using the code parsing library at https://github.com/jabapyth/codetalker

I'm thinking CMake. It can be used from both the command line and with a GUI, and supports both Mingw32 and VS.

Ah, that clears things up. Thanks for the wonderful explanation - sorry for not understanding in the first place.

I wouldn't mind helping complete this library. Though my experience is mainly centered around python and java, I do know how to read C, and figure that working on a...

If it helps, I have a Windows 8, 64 bit dev machine, with both Visual Studio and Mingw64 installed. I'm currently trying to get Visual Studio to compile the source...

The `reload_plugin` function only calls `plugin_loaded` on the target module - not on any of the module's dependencies. The normal sublime text plugin loading logic loops through `sys.modules` and calls...

@randy3k The modules that need `plugin_loaded` called are the same ones that are being reloaded. The work of finding and reloading them is already being done. I've been able to...

@randy3k I've since modified NimLime to not modify the search path (look at the restructure branch).

@randy3k That code loops through all submodules and exports the Sublime Text plugin classes. That way, when a new command or event listener is added to the `commands` directory, it...

This already seems to be implemented - I can call "Reload Current Package" while looking at any file in NimLime and have the package reloaded. The relevant code is implemented...