Thierry Volpiatto

Results 159 comments of Thierry Volpiatto

TitusMu ***@***.***> writes: > EMACSLOADPATH="/home/titus/.emacs.d/.local/straight/build-27.1/async/:" make emacs-helm.sh is looking for straight installation here: (straight-path (expand-file-name "straight/build/" user-emacs-directory)) which expand here to "/home/thierry/.emacs.d/straight/build/". At the time when I was using straight,...

Assuming helm and async are installed by straight (remove all you attempts to install from source), is this patch working? ```diff diff --git a/emacs-helm.sh b/emacs-helm.sh index c3020ea8..bfd26d9d 100755 --- a/emacs-helm.sh...

TitusMu ***@***.***> writes: > I don't know what I did wrong. Now, after newly installing Helm, I can > start your new emacs-helm.sh as often as I want, it always...

twlz0ne ***@***.***> writes: > Still can not set the default item sometimes, e.g.: > > (let ((helm-completion-style '(helm-flex))) You are confused with `helm-completion-style` and `completion-styles`. See docstring of `helm-completion-style`. For...

twlz0ne ***@***.***> writes: > You are confused with helm-completion-style and completion-styles. > > @thierryvolpiatto Thanks for correcting. > > But the following behavior (I reported at the beginning #2530 (comment))...

twlz0ne ***@***.***> writes: > Why one would do this? > > Of course no one writes code just to read 1 2 3, that is an example of reproducing the...

Hello Titus, Titus von der Malsburg ***@***.***> writes: > The change in ae8721c breaks multiple things in helm-mu, which relies on > helm-pattern storing the input for the last search....

Hello Titus, I made several changes to helm-mu, have a look. Thanks. -- Thierry

twlz0ne ***@***.***> writes: > (let ((helm-pattern "not empty")) > (completing-read "> " '("1" "2" "3") nil t nil nil "3")) > ;; => 1 > ;; 2 > ;; 3...

Titus von der Malsburg ***@***.***> writes: > I guess what you want is to reuse your last search as default for your > next helm-mu session isn't it ? >...