Matus Goljer

Results 397 comments of Matus Goljer

I would like to have this as well. A separate fetch/pull for tickets. I don't trust any software enough to put stuff into production issue trackers :D (I'm already using...

> It attempts to provide an interactive and non-interactive behavior for copy-as-format I think it would be more robust to have two functions, one for interactive and one for non-interactive...

I still dream of using straight.el as a build tool somehow. I use Cask but only due to momentum on my older projects and it's slowly falling apart. Me and...

Rather, coded properly it should just open the search remotely. Grep can do that so I suppose it's just some bad quoting in this package. Emacs is rather transparent when...

Actually, it works for me just fine. Your problem is that you don't have `ag` installed on the other end. Quite naturally it has to run there and not on...

Well, I've fixed it with this code ```elisp (defun my-after-indirect-edit-realign (beg end) (save-excursion (goto-char beg) (let ((cc (current-column)) (end-marker (set-marker (make-marker) end))) (while (< (progn (forward-line) (point)) end-marker) (line-beginning-position) (insert...

I saw them, but gtest doesn't seem to support mocking, without which the system components can hardly be tested, the dependencies are too far-reaching. For example, how would I instantiate...

Definitely go with DI. Service locator and singleton is basically the same thing, you couple the code to some external dependency you can't change later on (though with service locator...

Some people had update versions in the gist I posted: https://gist.github.com/Fuco1/e86fb5e0a5bb71ceafccedb5ca22fcfb

No worries! I put it in the gist for some reason (I don't remember) and others found it and started discussing there. I think I'll keep it open here because...