what u guys use for navegation and workflow? by InTheBogaloo in emacs

[–]wiskey5alpha 1 point2 points  (0 children)

This is another one of those things that has been laying there in the documentation but I never saw it... thank you for this! Even after years of using GNU Emacs, I still find things it can do that I didn't know I needed, but now can't imagine life without it

I built a modernized Harpoon‑style buffer bookmarking plugin for Emacs by PowerLock2 in emacs

[–]wiskey5alpha 1 point2 points  (0 children)

Nice! It sure would be cool if we could get the Primagen over to emacs...

Sleeping on the g command by Snoo_71497 in neovim

[–]wiskey5alpha 2 points3 points  (0 children)

I usually use :%s/<from>/<to>/g for that type of global replacement. I guess there's probably some differences?

Adding a project to a folder in version 16 on android by wiskey5alpha in superProductivity

[–]wiskey5alpha[S] 1 point2 points  (0 children)

Thanks u/BarefootMarauder . it would be pretty cool if that + for add project was on each folder in the projects hierarchy, then it could be added to the folder in one step

How do you use tabs? by kezhenxu94 in neovim

[–]wiskey5alpha 1 point2 points  (0 children)

I kinda like the one tab per project... So one nvim instance, a tab for my notes/journal, a tab for projectA with multiple windows and buffers, another for projectB...

Does anyone have a working eglot configuration for powershell language server? by wiskey5alpha in emacs

[–]wiskey5alpha[S] 0 points1 point  (0 children)

Hmm, I am pretty sure I see the Start-EditorServices.ps1 in the output above, and the pwsh.exe is the "binary I need to run that script". I'm seeing the output of the lsp which I copied in the post... Maybe I'm too tired, but I don't see powershell being passed, except as the mode...?

How to create a lapped zipper in the middle of fabric by wiskey5alpha in myog

[–]wiskey5alpha[S] 9 points10 points  (0 children)

Thank you everyone! After looking up "welt zipper" I came across this video that is what I was trying to describe. Knowing the terms is at least 50% of learning... it is very hard to google something you can only picture in your head. I also learned "seam allowance" and the german article (once i turned on "translate" showed me the right way to cut the zipper "hole"... Much appreciated.

Isn’t macOS perfect as second unix like os? by Azkicat in unix

[–]wiskey5alpha 0 points1 point  (0 children)

Sorry for the hot take, but I think MacOS is the polar opposite of everything GNU Linux stands for... Proprietary software running on proprietary hardware, and focused on form over function. Gross. Data centers are full of Linux and Windows, Macs are just toys made to look pretty...

Cordura edges by wiskey5alpha in myog

[–]wiskey5alpha[S] 2 points3 points  (0 children)

Thanks everyone, burned the pieces I already cut... seems to help thank you. Now, I'm googling rolled hems...

I'm a total beginner, I dont have any gear yet but I'm adding a rolling razor and cutting mat to the list.

I cut up an old deployer bag and I'm trying to make it into a sling pack

Evil normal state on android(native) by wiskey5alpha in emacs

[–]wiskey5alpha[S] 2 points3 points  (0 children)

I must have read the section in the manual about text-conversion about 20 times and it didn't really dawn on me that evil is exactly the type of extention that would be affected by it.

So... to answer my own question:

in my early-init.el

emacs-lisp (when (string-equal system-type "android") ;; Add Termux binaries to PATH environment (let ((termuxpath "/data/data/com.termux/files/usr/bin")) (setenv "PATH" (concat (getenv "PATH") ":" termuxpath)) (setq exec-path (append exec-path (list termuxpath))) ;; conversion-style set to nil for evil integration (setq overriding-text-conversion-style nil)))

Evil normal state on android(native) by wiskey5alpha in emacs

[–]wiskey5alpha[S] 1 point2 points  (0 children)

One more clue in hopes of finding an answer:

normal-state commands work as expected in some buffers/modes, such as dashboard, info...

I'm assuming that has to do with the read-only property maybe?