Leonardo Santagada
Leonardo Santagada
Hi, Has prompt-toolkit been considered? It would give most of fish shell features missing, vim keybindings and more. The downside is moving token parsing and other infrastructure code to it....
It appear that it doesn't support sublime text 3 yet, is there any chance of it happening?
Right now xonsh doesn't support env variables with ( in their names. ``` $ProgramFiles(x86) Traceback (most recent call last): File "C:\Users\leonardo.santagada\AppData\Local\Programs\Python\Python36\lib\site-packages\xonsh\built_ins.py", line 512, in _run_binary p = self.cls(self.cmd, bufsize=bufsize, **kwargs)...
CMake has a very useful property called WINDOWS_EXPORT_ALL_SYMBOLS: https://cmake.org/cmake/help/v3.9/prop_tgt/WINDOWS_EXPORT_ALL_SYMBOLS.html That uses a coff symbol dumper (cmake internal command) that creates .def files for .obj files exporting every symbol in them....