(homedir string)
| 373 | } |
| 374 | |
| 375 | func getFishHistoryPath(homedir string) string { |
| 376 | return filepath.Join(homedir, ".local/share/fish/fish_history") |
| 377 | } |
| 378 | |
| 379 | func parseFishHistory(homedir string) iter.Seq2[string, error] { |
| 380 | lines := readFileToIterator(getFishHistoryPath(homedir)) |
no outgoing calls
no test coverage detected