- Add SessionStore field to tui.Config - Add /resume slash command: lists sessions or restores by ID - Pass SessionStore to tui.New in main.go - Update /help text to include /resume - Add .gnoma/sessions/ to .gitignore
39 lines
294 B
Plaintext
39 lines
294 B
Plaintext
# Binaries
|
|
/gnoma
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test
|
|
*.test
|
|
*.out
|
|
coverage.html
|
|
coverage.txt
|
|
|
|
# Build
|
|
/bin/
|
|
/dist/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Project config with secrets
|
|
.gnoma/config.toml
|
|
|
|
# Session data
|
|
.gnoma/sessions/
|
|
|
|
# Debug
|
|
__debug_bin*
|
|
.env
|