Results 127 comments of evandrocoan

It depends on the event type. There are some event Sublime Text does not throw (due bugs on Sublime Text). You can try to override the keybind `escape` and `enter`...

Still doing it on the Stable version when the directory does not exists: ``` plugins loaded Traceback (most recent call last): File "L:\Programs\SublimeText\Data\Packages\AmxxEditor\watchdog\observers\api.py", line 322, in schedule emitter = self._get_emitter_for_watch(watch)...

You can use a VBScript, I just wrote one for Sublime Text, which has embedded the `-n` option: ```vbs ' This program is free software; you can redistribute it and/or...

Just casting it to a function pointer also does not work: ```cpp #include "tinyformat.h" int main(int argc, char const *argv[]) { typedef int (*Function)( int argc, char const *argv[] );...

I prefer to fix the `%s` format (in the underlying std iostreams library) because I like to always use `%s` for everything, including pointers. If the `%s` fix is implemented,...

> I'm not sure this will work out cleanly. It would be very nice if we could patch/fix the buggy `iostream` template overloading resolution for function pointer to bool, i.e.:...

@c42f, I found a solution for the iostream overloading problem: https://godbolt.org/z/Hf67j5 ```cpp #include template std::ostream& operator

> ```c++ > ```c++ > template > std::ostream& operator > > @c42f Plausibly we could attach some conversion like this as a new version of formatValue and that could be...

For an C++ 98 is_pointer version I found these alternatives: https://stackoverflow.com/questions/3177686/how-to-implement-is-pointer Which one you like most? This solution I think is nice: ```c++ template struct is_pointer { static const bool...