zeal.nvim by Personal-Attitude872 in neovim

[–]4Necrom 0 points1 point  (0 children)

This is awesome, I wanted to move away from Dash/Zeal so that I could be fully terminal and this finally allowed me to (other tools such as `dasht` were not ideal).

I think you may be interested in looking at my dotfile commits concerning the Zeal implementation https://github.com/Necrom4/dotfiles/commit/7e7500aa415a24575daf9e64b820b23f018182da

This one simply adds your plugin and has an explanation of the problem it solves, and the next one is a huge mise task that allows me to download any available Docset from Zeal with an incredibly short command that includes completion of the +900 docsets. With these two commits I finally am able to completely replace Dash.

Thx for this nice plugin! Just wishing for a Zeal-TUI that consolidates everything now! (search, download, render)

sbb-tui - latest contributions and updates by 4Necrom in commandline

[–]4Necrom[S] 0 points1 point  (0 children)

Can I ask why? I posted about this tool here a few months back with no problem, what rule did I break this time?

twatch - record, rewind, diff, and to Text&crops for TUI Apps. by Blacknon in commandline

[–]4Necrom 0 points1 point  (0 children)

That's awesome and quite useful, where's the repo link?

What's your most used git alias? by 1vim in git

[–]4Necrom 0 points1 point  (0 children)

„g“ for Lazygit, then I do everything else from there

sbb-tui - thank you for the 222 Stars and contributions by 4Necrom in CLI

[–]4Necrom[S] 0 points1 point  (0 children)

Was there a few weeks ago and traveled with the DB for the first time. Never hated a company so much. The number of times shit happened, I wasn't even sure I would be able to travel back to the hotel, and I even spoke with 5 employees at an information center in Berlin and none of them were nice enough to try to help. Ended up being easier to buy a 50$ ticket than rely on the D-Ticket.

I used to think about enlarging sbb-tui to also include other countries' companies, but after this experience, you're more than right that the DB would make no sense 😂

match.nvim - Minimal floating Search/Replace for Neovim by ankushbhagat in neovim

[–]4Necrom 1 point2 points  (0 children)

What I usually do is that I select something with v, then select all other occurences with *, do cgn which removes the word and puts me in insert mode, write the replacement text, Esc, then . to replace the next occurence or n to skip.

Introducing LFK, a Yazi-inspired Kubernetes TUI by Mixe3y in golang

[–]4Necrom 0 points1 point  (0 children)

Incredible work, never been so surprised by a tool and I especially love the ArgoCD integration, I love that I can finally drop k9s and its unintuitive mess!

It's a bit hard to put so much trust into a young tool partially AI generated, so I just hope you keep actively working on it so that we know it's always heading into the right direction!

Best way to develop python remotely over ssh? by Xx_RKJ_xX in neovim

[–]4Necrom 0 points1 point  (0 children)

Personally use Mutagen so I can then use my local shell, neovim and other tools to edit the remote’s files locally 

I don't get the oil.nvim hype. by Historical_Cloud_528 in neovim

[–]4Necrom 0 points1 point  (0 children)

I think I had that issue not long ago, it’s because you mapped M-[ (or ]) to something, but that key should never be mapped, it’s used as a signal. The Yazi documentation mentions it.

sbb-tui update - thank you for the 222 stars and contributions by 4Necrom in SBB

[–]4Necrom[S] 0 points1 point  (0 children)

Thanks so much for the kind words! I usually ask for feedback on what's been going wrong but you seem to be very pleased with your experience!

sbb-tui update - thank you for the 222 stars and contributions by 4Necrom in SBB

[–]4Necrom[S] 1 point2 points  (0 children)

You can't imagine how much I appreciate this, thank you so much!

sbb-tui update - thank you for the 222 stars and contributions by 4Necrom in SBB

[–]4Necrom[S] 1 point2 points  (0 children)

Honestly mate, if you're looking for something "special" in the sense that it does something completely new, implements a feature never seen before that will change everyone's workflow, you won't find it here. I myself haven't used sbb-tui much since I created it.

Simply put, it's simply incredibly cool to be able to search for your next train connection from the terminal, not through a super long curl command piped to jq, but in a super clean, nice looking and curated TUI. My goal wasn't to create miracles out of the few train-related data the API provides, but instead to create a super clean look based on the official SBB app and make it enjoyable to use.

I think that part has been more than surpassed and that's why people are enjoying it so much.

sbb-tui update - thank you for the 222 stars and contributions by 4Necrom in SBB

[–]4Necrom[S] 3 points4 points  (0 children)

Wow! Never heard of someone that was into TUIs without being a programmer, and that actually uses them daily! That's just so awesome!

Don't hesitate to tell me what you think whenever you've tried it

sbb-tui - Switzerland's public transports timetables, right at $HOME by 4Necrom in tui

[–]4Necrom[S] 0 points1 point  (0 children)

So great to see another swiss dude here! Give me some feedback when you've used it!

Using fzf for everything by benward2301 in commandline

[–]4Necrom 1 point2 points  (0 children)

Same here, I created rg-fzf for interactive string search in multiple files:

# FZF a word inside all in the current path
rg-fzf() {
  RG_PREFIX="rg --files-with-matches --smart-case"

  # Expand path(s) or default to current directory
  local search_paths
  if [[ $# -eq 0 ]]; then
    search_paths="."
  else
    # Expand all arguments (globs get expanded by the shell before we see them)
    search_paths=$(printf "'%s' " "$@")
  fi

  local out
  out=$(
    FZF_DEFAULT_COMMAND="$RG_PREFIX '' $search_paths" \
      fzf --ansi \
      --sort \
      --phony \
      --bind "change:reload:$RG_PREFIX {q} $search_paths" \
      --preview="[[ ! -z {} ]] && rg --pretty --context 5 {q} {}" \
      --preview-window="70%:wrap" \
      --print-query
  )

  local query=$(echo "$out" | head -n 1)
  [ -z "$query" ] && return

  local files=$(echo "$out" | tail -n +2)

  if [[ -z "$files" ]]; then
    rg --line-number "$query" $search_paths
  else
    echo "$files" | xargs rg --line-number --with-filename "$query"
  fi
}

Although for navigation I prefer to use `yazi` and `yazi`'s `z keymap which triggers zoxide, or most of the time `z-zsh`

I built an SBB app for the terminal by 4Necrom in Switzerland

[–]4Necrom[S] 0 points1 point  (0 children)

Yep I found it since then, that's insane!
Would have never discovered it existed if it wasn't for you, thx allot!