mirror of
https://github.com/zellij-org/zellij.git
synced 2024-11-26 10:55:12 +03:00
Fix Max Config Directory
closes #485 * fixes a regression on the config directory handling on mac
This commit is contained in:
parent
ba4e23b163
commit
a116f6e177
@ -10,6 +10,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
||||
* Move the sync command to tab mode (https://github.com/zellij-org/zellij/pull/412)
|
||||
* Fix exit code of `dump-default-config` (https://github.com/zellij-org/zellij/pull/480)
|
||||
* Feature: Switch tabs using `Alt + h/l` in normal mode if there are no panes in the direction (https://github.com/zellij-org/zellij/pull/471)
|
||||
* Fix handling of $HOME `config` direcotry, especially relevant for darwin systems (https://github.com/zellij-org/zellij/pull/487)
|
||||
|
||||
## [0.8.0] - 2021-05-07
|
||||
* Terminal compatibility: pass vttest 8 (https://github.com/zellij-org/zellij/pull/461)
|
||||
|
@ -4,7 +4,7 @@ use directories_next::{BaseDirs, ProjectDirs};
|
||||
use std::io::Write;
|
||||
use std::{fs, path::Path, path::PathBuf};
|
||||
|
||||
const CONFIG_LOCATION: &str = "/.config/zellij";
|
||||
const CONFIG_LOCATION: &str = ".config/zellij";
|
||||
|
||||
#[macro_export]
|
||||
macro_rules! asset_map {
|
||||
|
Loading…
Reference in New Issue
Block a user