Paul

Results 8 comments of Paul

@DSMan195276 Hello, I had the "svalue" compiler issue when building on Mac OSX. Removing all the unions from the optOption struct did work for me.

There is a kind of hook commonly found in shells which is executed right before showing the prompt (and sometimes also after showing it). This is used by direnv integrations,...

We have recently been using extensively the `ActiveModel::Attributes` with @valentin-lifen and have implemented types that are pretty much the same as the `Model` and `Collection`. We are delighted to see...

Hi, thanks for your bug report, I have never experienced such slow downs myself. I will try to reproduce it with using your dotfiles.

Hi, the latest release (#14) has fixed a bug in the bucket creation callback which could be the cause of the slowdown. Would you like to try it and see...

Looks like this is related to the `requests` package, I'll have a look.

It looks like this is a builtin feature of requests when operating on remote files: https://github.com/tkf/emacs-request/blob/master/request.el#L959 I think you are facing an issue similar to this one: https://github.com/tkf/emacs-request/issues/59 Maybe you...

Hi, I think it should be possible by hooking into `find-file-hook` and disabling activity watch: ```elisp (defun disable-activity-watch-tramp () (when (and (buffer-file-name) (file-remote-p (buffer-file-name))) (activity-watch-mode nil))) (add-hook 'find-file-hook 'disable-activity-watch-tramp) ```...