HackerTrans
TopNewTrendsCommentsPastAskShowJobs

_blz2

no profile record

comments

_blz2
·ปีที่แล้ว·discuss
[flagged]
_blz2
·ปีที่แล้ว·discuss
> increasing aggression from Russia

yes that's the biggest problem in EU right now lol
_blz2
·ปีที่แล้ว·discuss
funny how that made the phone more expensive
_blz2
·ปีที่แล้ว·discuss
First they say healthcare is expensive because of the research costs involved, why does healthcare research also require govt funding too?
_blz2
·2 ปีที่แล้ว·discuss
You're right, censorship is same as lack of censorship.
_blz2
·2 ปีที่แล้ว·discuss
[flagged]
_blz2
·2 ปีที่แล้ว·discuss
real problems require people to change habits and thinking. Neither of these are tech solvable.
_blz2
·2 ปีที่แล้ว·discuss
yes, people are stealing because of cut staff at checkout machines.
_blz2
·2 ปีที่แล้ว·discuss
Iosevka is the one for me: https://www.programmingfonts.org/#iosevka
_blz2
·2 ปีที่แล้ว·discuss
Paul Otellini and Brian Krzanich (both from sales background) have made such strategic mistakes its hard to overstate, combined with the govt office work culture makes it not a great place to work
_blz2
·2 ปีที่แล้ว·discuss
For better.
_blz2
·2 ปีที่แล้ว·discuss
Read once here, the best cheat sheet is one you create yourself. In my case, with fish shell or bash history search with fzf, I've effectively created a cheat sheet of commands I frequently tend to use with working examples. Seems to be working for me so far.
_blz2
·2 ปีที่แล้ว·discuss
No, it shouldn't.
_blz2
·2 ปีที่แล้ว·discuss
It was solved.

https://github.com/zellij-org/zellij/issues/2679
_blz2
·2 ปีที่แล้ว·discuss
Most of the problems with zellij people have initially can be fixed if they write the config file from bottom up..just comment everything out and you'll get to your desired config in 15 minutes.

Use the 'clear-defaults=true' option for each mode and build the config.

E.g.resize mode for me looks like this

  resize clear-defaults=true {
        bind "Esc" { SwitchToMode "Normal"; }
        bind "h" { Resize "Increase Left"; }
        bind "j" { Resize "Increase Down"; }
        bind "k" { Resize "Increase Up"; }
        bind "l" { Resize "Increase Right"; }
    }

Normal mode:

  normal clear-defaults=true {

        // Quit/detach
        bind "Alt x" { Quit; }
        bind "Alt d" { Detach; }

        // Switch modes
        bind "Alt p" { SwitchToMode "pane"; }
        bind "Alt r" { SwitchToMode "resize"; }
        bind "Alt t" { SwitchToMode "tab"; }
        bind "Alt s" { SwitchToMode "scroll"; }
        bind "Alt m" { SwitchToMode "move"; }

        // new pane or resize pane
        bind "Alt n" { NewPane; }
        bind "Alt >" { Resize "Increase"; }
        bind "Alt <" { Resize "Decrease"; }

        // move between panes (moves tabs if at the last pane)
        bind "Alt h" { MoveFocusOrTab "Left"; }
        bind "Alt j" { MoveFocus "Down"; }
        bind "Alt k" { MoveFocus "Up"; }
        bind "Alt l" { MoveFocusOrTab "Right"; }

        // swap layouts
        bind "Alt {" { PreviousSwapLayout; }
        bind "Alt }" { NextSwapLayout; }

        bind "Alt 1" { GoToTab 1; }
        bind "Alt 2" { GoToTab 2; }
        bind "Alt 3" { GoToTab 3; }
        bind "Alt 4" { GoToTab 4; }
        bind "Alt 5" { GoToTab 5; }
    }
_blz2
·2 ปีที่แล้ว·discuss
Zellij is an order of magnitude better than tmux. Main issue with tmux was that it always messed up my TERM.
_blz2
·2 ปีที่แล้ว·discuss
wezterm + ssh + zellij on remote machine has been working like a charm for me.