= 1024) {
$event.preventDefault();
const i = slugs.indexOf($wire.preview);
const next = $event.key === 'ArrowDown' ? Math.min(i + 1, slugs.length - 1) : Math.max(i - 1, 0);
if (next !== i && slugs[next]) $wire.openPreview(slugs[next]);
}
">
Installation Guides
11
Knowledge Base
308 copy-ready commands with fill-in variables, plus step-by-step installation guides.
/
Categories
4 results
= 1024) { $event.preventDefault(); $wire.openPreview('gems-fzf-file-search') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('gems-fzf-file-search') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
CLI Productivity
Fuzzy-Find and Open a File (fzf)
find {{search_path}} -type f | fzf | xargs -o {{editor}}
#fzf
#find
5 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('gems-history-grep') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('gems-history-grep') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
CLI Productivity
Search Command History with grep
history | grep "{{keyword}}"
#history
#grep
4 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('gems-tmux-session') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('gems-tmux-session') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
CLI Productivity
Create and Reattach a tmux Session
# Create a named session
#tmux
#terminal
6 views
0 copies
= 1024) { $event.preventDefault(); $wire.openPreview('gems-env-export') }"
class="absolute inset-0 z-0 rounded-xl focus:outline-none focus-visible:ring-2 focus-visible:ring-blue-500">
= 1024) { $event.preventDefault(); $wire.openPreviewWithPicker('gems-env-export') }"
class="absolute top-2 end-2 z-10 p-1.5 rounded-md transition text-gray-300 opacity-0 group-hover:opacity-100 group-focus-within:opacity-100 hover:text-amber-400"
title="Save to collection">
CLI Productivity
Load .env File into the Current Shell
export $(grep -v "^#" {{env_file}} | xargs)
#env
#export
8 views
0 copies