Live data from Hacker News

Shunpo: Minimalist bash tool to make directory navigation a little bit faster

github.com

21–30 of 54 posts

Re: Shunpo: Minimalist bash tool to make directory navigation a little bit faster

#21
post #8

I have a utility called ZSH Autosuggestions, and it's probably one of the most useful things on my computer. It shows you a sort of preview of the most recent command you typed that matches the prefix of the current command you are typing. It's basically an automatic tool that bookmarks commands based on usage. I think the best bookmark systems are ones which simply track your entire history and suggest relevant page…

This is essentially a fish built-in. I used to use zsh before, but since changing to fish I've never looked back. Auto completion, abbreviations, better syntax, and especially the auto complete is like magic. It also seems to "know" in which working directories some commands work and won't suggest them if they arent.

> It also seems to "know" in which working directories some commands work

The 'It' above is actually the user as auto-complete is context dependent, so fish prioritises search results based on commands that were previously used within the current directory.

Re: Shunpo: Minimalist bash tool to make directory navigation a little bit faster

#24
post #8

I have a utility called ZSH Autosuggestions, and it's probably one of the most useful things on my computer. It shows you a sort of preview of the most recent command you typed that matches the prefix of the current command you are typing. It's basically an automatic tool that bookmarks commands based on usage. I think the best bookmark systems are ones which simply track your entire history and suggest relevant page…

This is essentially a fish built-in. I used to use zsh before, but since changing to fish I've never looked back. Auto completion, abbreviations, better syntax, and especially the auto complete is like magic. It also seems to "know" in which working directories some commands work and won't suggest them if they arent.

I saw this in fish first. I really did want to love fish. I do love their tagline. However they are weirdly against comfigurable options and there were some minor things that irritated me that could not be configured away. So I looked at what zsh can do. I have a minimal setup now where I know what almost everything does and am very very happy with. Autosuggestions is fantastic.

Re: Shunpo: Minimalist bash tool to make directory navigation a little bit faster

#26
post #3

I really like "jump" which I have aliased to "j". It auto learns and you can also pin shortcut names so I don't have to fuss configuring it but also can control certain ones. Great trade off between usability and configurability. Can't find the repo but "brew install jump" works :)

https://github.com/gsamokovarov/jump > Personally, I've been using z ( https://github.com/rupa/z >) for ages and never really needed more.

Yes, z, and for interactive navigation the `simple directory navigator` sdn [1] - together with `ls` that's all I need.

[1] https://git.janouch.name/p/sdn

Re: Shunpo: Minimalist bash tool to make directory navigation a little bit faster

#27
I never used pushd and popd. Did not even know about them. But I use autojump it give directories a prioroty numbers and then you just have to type "j pro" and you cd into your projects folder for example.

https://github.com/wting/autojump

just looked at it again it also has a jc command for child directories and commands to open file explorer that I never used.

Re: Shunpo: Minimalist bash tool to make directory navigation a little bit faster

#28
post #27

I never used pushd and popd. Did not even know about them. But I use autojump it give directories a prioroty numbers and then you just have to type "j pro" and you cd into your projects folder for example. https://github.com/wting/autojump just looked at it again it also has a jc command for child directories and commands to open file explorer that I never used.

pushd/popd are over 40 years old btw. Used to use them in the 90s. I decided invisible states requiring working memory create a cognitive split encouraging user error because you have to maintain the focus of the task and the invisible parts of the tool you're using to do the task.

Well ok, Jef Raskin decided that and I happen to agree with him.

My extension is "anything that requires traversing either taxonomies or invisible geometries is too much to ask." So for instance, tmux splits previous-pane and previous-window into two things so the "last thing I was looking at" now asks you to consider whether that was in a pane or a window[1] ... as if you had taken the time to diligently organize it (traversing taxonomy). Xorg's split of the clipboard into CLIPBOARD, PRIMARY, SECONDARY, CUT_BUFFER0-9 and every program having a different opinion on how to copy and paste into them is another one. And then tools like tmux have their own and tools like vim and emacs have their own. So vim, inside of tmux, inside of ssh, inside of some terminal ... right. [2]

Similarly, the multi-dimensionality of many tiled window managers (where you have up, down, left, right, tab left, tab right, workspace (up/down/left/right) etc ...) is like navigating via hypercube.

It's way too complicated to keep a mental model of and leads to lots of errors. I still use one because there's no other reasonable way to leverage the multi-tasking abilities of modern machines but it leads a lot to be desired. My user error rate is probably over 80%.

I'm sure some geniuses can do it but most people cannot.

[1] I have a fix!

Add this to .tmux.conf

    set -g focus-events on
    bind-key l run-shell "$HOME/bin/tmux-last switch"
    set-hook -g pane-focus-out "run-shell 'tmux set-option @out #{pane_id}"
    set-hook -g pane-focus-in "run-shell '$HOME/bin/tmux-last in #{pane_id} #{@out}"
Where tmux-last is https://9ol.es/tmp/tmux-last

[2] If you are a traditionalist using xterm or some derivative, this block taken from my .Xresources should be enlightening

    *VT100*translations:    #override \n\
    ~Shift~Ctrl: insert-selection(PRIMARY, CUT_BUFFER0) \n\
    Shift~Ctrl: insert-selection(CLIPBOARD, CUT_BUFFER1) \n\
    Ctrl Shift V:  insert-selection(CLIPBOARD, CUT_BUFFER1) \n\
    Ctrl V:  insert-selection(PRIMARY, CUT_BUFFER0) \n\
    ~Shift      : select-end(PRIMARY, CUT_BUFFER0) \n\
    Shift      : select-end(CLIPBOARD, CUT_BUFFER1) \n\
It's still strait jacket drooling insanity, but at least it's a little less.

Probably the actual fix in X would be to somehow route all clipboards through DBus so then the user AND the application can have their own opinions and not have to have a bunch of accommodations for each other.

Re: Shunpo: Minimalist bash tool to make directory navigation a little bit faster

#29
post #2

Interesting approach. Since I've converted entirely to nushell, I'm using zoxide to solve this navigation friction. https://github.com/ajeetdsouza/zoxide The only thing I'm missing from zsh is path aware auto completion... supposedly this works if you enable the sqlite history for nushell but iirc it was buggy.

Just a note that zoxide isn't specific to nushell in any way: I use it with great satisfaction in both zsh and bash!
Post reply on HN