2
0

fix: apply aishell review findings

- fix vim-plug URL typo (juneguyen -> junegunn) in install.zsh
- fix recent-dirs path to ~/.chpwd-recent-dirs in ais
- remove dead plugins (cdselect, fileselect, histselect) superseded by ais
- fix .gitignore to properly exclude target/ dirs
This commit is contained in:
ai
2026-04-03 10:49:23 +00:00
parent 97aadc98a4
commit 31d6c2f8c7
6 changed files with 3 additions and 194 deletions

View File

@@ -46,7 +46,7 @@ fn get_dirs() -> Vec<String> {
let mut dirs = vec![];
// try zsh recent-dirs
let chpwd = format!("{}/.local/share/zsh/recent-dirs", home);
let chpwd = format!("{}/.chpwd-recent-dirs", home);
if let Ok(content) = std::fs::read_to_string(&chpwd) {
for line in content.lines() {
let path = line.trim().replace("$'", "").replace('\'', "");