Giap Tran
Giap Tran
Seem this issue came from https://github.com/bbatsov/crux/pull/80
Hello everyone. I'm thinking about adding an action `run M-x` when I run `find-file` With this action I can : - Run `find-grep`/`rg` with pointed directory - Run `eshell/shell/ansi-term/vterm` under...
Thank @oantolin, That is possible, right. I just suggest adding this action to the package if you think it is useful for everyone. I will build it for me.
Oh, yes! That is my idea. ```emacs-lisp (defun embark-in-directory (dir cmd) "Run CMD in directory DIR." (interactive "DIn directory: \nCRun command: ") (let ((default-directory (file-name-directory dir))) (command-execute cmd))) (define-key embark-file-map...
Yup. I'm binding `M-o` to `embark-act`. But if you add this action, I see `/` is a good default keybinding.
Thank @astoff, I'm glad with `embark-in-directory`action right now. I love it. I had a same feature with ivy action in past. If I want to grep something in a other...
So, I think you can push on https://weblate.org. It's very simple for everyone can help to translate it.
> I'm not a vterm user so I kind just trust patches/fixes on that side. I know [this](https://github.com/abrochard/kubel/commit/c45e19a215e8e7df80a61c10ca1fa26dcfd1de35) was merged recently. Could it be related? I think this commit had...
In my opinion: - Still use shell to print output, but we will inject properties at point(or line) each resource to define context, namespaces, resource type and id. So we...
> That's an interesting idea. I wonder how [kubernetes-el](https://github.com/kubernetes-el/kubernetes-el) does it? I tried kubernetes-el long time ago, It looks like [guix.el](https://github.com/alezost/guix.el) interface. But I like kubel because it is KISS....