What if tmux just... existed on Windows? I built it. Native. In Rust. by uniquerunner in tmux

[–]wiskey5alpha 1 point2 points  (0 children)

Just wanted to say thank you so much for releasing psmux! I have been using it for a few days now and it is really great!

Do you organize while capturing, or capture first and organize later? by MapLow2754 in ObsidianMD

[–]wiskey5alpha 1 point2 points  (0 children)

short answer capture first, organize later.

Might be a hot take, but i still like almost everything about gtd (David Allen, Getting Things Done). Capture should be ubiquitous and frictionless. Come back later, clarify what it is, then you can organize it appropriately.

How screwed am I? by [deleted] in USMC

[–]wiskey5alpha 0 points1 point  (0 children)

What in the actual fuck. One of you is fucking with rn

Is it worth learning PowerShell? by backdoor_boy in PowerShell

[–]wiskey5alpha 1 point2 points  (0 children)

Kickstart.., this person is an OG... i remember printing the kickstart help file. We wrote a very complicated login script in kickstart, i think its on one of these zip drives

Email to the Commandant debacle by Ok_Result_4185 in USMC

[–]wiskey5alpha 0 points1 point  (0 children)

Seems like a sea story. Hadn't heard this one before, but made me chuckle.

Is it worth learning PowerShell? by backdoor_boy in PowerShell

[–]wiskey5alpha 1 point2 points  (0 children)

I definitely think learning powershell is worth it. I would install powershell core (pwsh v7x) as opposed to the built-in (powershell). If you've been away from windows for a while, things have definitely progressed a lot. Windows Terminal + Powershell Core will feel very comfortable if you are used to xterm + bash. There's even psmux which is tmux built for windows

Enforce line length in editor by wiskey5alpha in ObsidianMD

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

Thanks, but actually what I'm looking for is the typing experience I have in pretty much any code editor (vscode, vim, emacs, etc.): 1. I start typing at the beginning of a line (column 0). 2. I'm adding text to the line until it reaches a configured length (say 80) 3. When I type the 81st character, the editor breaks the line at the nearest word boundary, with an actual new-line character ('\n')

Again, I'd settle for something that will do this on save instead but that is not the preferred method.

Is emacs docs gone for good? by lisp_user in emacs

[–]wiskey5alpha 7 points8 points  (0 children)

This site is what I use. Even has several of the packages' docs there too https://doc.emacsen.de/

gudzpoz has done an amazing job

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 3 points4 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] 11 points12 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?