Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cclog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ __cclog_browse() {
# If directory argument provided, use it; otherwise use current directory
local target_dir="${1:-$(pwd)}"

# Convert "/" to "-" and "." to "-" for project directory name
local project_dir=$(echo "$target_dir" | sed 's/\//-/g; s/\./-/g')
# Convert "/" to "-", "." to "-", and "_" to "-" for project directory name
local project_dir=$(echo "$target_dir" | sed 's/\//-/g; s/\./-/g; s/_/-/g')

local claude_projects_dir="$HOME/.claude/projects/$project_dir"

Expand Down