John Ciolfi

Results 16 issues of John Ciolfi

Currently if you hit the enter key when using ace-window it cancels the switch window operation. Instead of canceling, please make it jump back to where I was. Consider a...

Given: ```c++ struct Foo { static constexpr auto (A::*f)() const = &A::start; }; static auto toFile = [](auto const& f) -> auto { auto p = f->getP(); return xp(p); };...

clang-format
regression
awaiting-review

Given: ```c++ #include #include #define CHECK(a) \ { std::cout

clang-format
regression
awaiting-review

Given `test.cpp`: ```c++ void foo() { std::ostringstream outStream; json outJSON = { { "type", "asdf"}, { "name", "asdfasdfasdfsadfasdfasdf"}, {"callback", "asdfasdfasdfasdfasdfasdfasdfasdfasdfasdfsadfasdf"}, { "items", foobar} }; } ``` and `_clang-format` ```yaml ---...

clang-format

Given: ```c++ class Foo { const bool _isFooBar1234; bool isFooBar1234() const { return _isFooBar1234; } }; ``` and `_clang-format` ```yaml --- BasedOnStyle: Google IndentWidth: 4 AlignConsecutiveAssignments: Consecutive AlignConsecutiveDeclarations: Consecutive AllowShortFunctionsOnASingleLine:...

clang-format

On a large (15+ MB) *.xml file in nxml-mode, when highlight-indent-guildes-mode is enabled, emacs locks up. Is there something that can be done about this? If you need a reproduction...

bug

The fzf integration in Emacs is very nice, but doesn't work on Windows. I spent a little time looking at adding Windows support. The underlying term.el used by fzf.el leverage...

Thanks for the nice fzf integration in Emacs, it's quite nice. Though I think it would be nicer if it had colors. Reading the match characters would be easier with...

We have a large code base and it takes hours to index. Therefore, we index the code base using ccls in cron at night. We are using the btrfs file...