back to Portfolio index

Code

Overview

Code is a simple CLI tool I made to help me open my coding projects faster. It remembers which projects I use most often and works with my favorite tools like Neovim, Sway window manager, and kitty terminal.

Motivation

I got tired of typing long folder paths all the time. When you work on lots of projects, it’s annoying to keep searching through folders just to open something. I wanted a tool that would:

Solution

I built Code in Go to scan my folders for Git projects and show them in a simple list I can search through. The main features:

I can switch between different search interfaces using simple Lua config files:

-- fuzzel configuration (GUI)
return {
    command = function()
        return {
            command = "fuzzel",
            args = { "--dmenu", "--prompt=Project: " }
        }
    end,
    show = function(text)
        return "📘 " .. text
    end,
    process_output = function(text)
        return text:gsub("^📘%s*", "")
    end
}

Using it is super simple:

# Just run 'code' to see list of projects
code

# Or specify which folder to look in
code ~/Projects

I have it bound to a keyboard shortcut in my Sway config, so I can press $mod+t anytime to quickly open a project:

bindsym {
    # Other keybindings...
    $mod+t        exec ~/.bin/code -s ~/.bin/fuzzel.lua
    # More keybindings...
}

Which looks like this when I trigger it:

Screenshot of Fuzzel
Screenshot of Fuzzel

On selection, it will spawn a new Kitty terminal with its own Tmux session and open the project in Neovim plus an empty vertical pane.

But, if the project is already open, it will just switch to that window:

Screenshot of Kitty
Screenshot of Kitty

Is it over kill?

Yes

I love it