mirror of
https://github.com/jarun/nnn.git
synced 2025-03-16 11:44:04 +00:00
Change history file path.
The new path is ${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.history
This commit is contained in:
parent
9feb5ce651
commit
979fadcc7e
1 changed files with 4 additions and 2 deletions
|
@ -4964,7 +4964,8 @@ int main(int argc, char *argv[])
|
|||
#else
|
||||
rl_bind_key('\t', rl_complete);
|
||||
#endif
|
||||
read_history(NULL);
|
||||
mkpath(cfgdir, ".history", g_buf);
|
||||
read_history(g_buf);
|
||||
#endif
|
||||
|
||||
if (!initcurses())
|
||||
|
@ -4974,7 +4975,8 @@ int main(int argc, char *argv[])
|
|||
exitcurses();
|
||||
|
||||
#ifndef NORL
|
||||
write_history(NULL);
|
||||
mkpath(cfgdir, ".history", g_buf);
|
||||
write_history(g_buf);
|
||||
#endif
|
||||
|
||||
if (cfg.pickraw) {
|
||||
|
|
Loading…
Add table
Reference in a new issue