ck961018
ck961018
**Describe the bug** I attempted to save `/examples/llvm-project/libcxx` as a session, and indeed, it generated a `%home%user%examples%llvm-project%libcxx.vim` file under `/.local/share/nvim/sessions/`. However, when I tried to use `require("auto-session").get_root_dir()` to retrieve the...
Closes #83 Closes #84
### Description ```rust #[test] fn local_test() { InsertTest(vec![("/{foo}", Ok(())), ("/{foo}suffix", Ok(()))]).run(); // success InsertTest(vec![("{foo}", Ok(())), ("{foo}suffix", Ok(()))]).run() // fail } ``` ### Cause The `prefix_wild_child_in_segment` function does not correctly handle...
## Description - **Pass:** Inserting `"{foo}/"` then `"foo/"`. - **Panic:** Inserting `"foo/"` then `"{foo}/"`. ## Reproduction ```rust #[test] fn local_test() { InsertTest(vec![("{foo}/", Ok(())), ("foo/", Ok(()))]).run(); // ok InsertTest(vec![("foo/", Ok(())), ("{foo}/",...