This website requires JavaScript.
Explore
Help
Register
Sign In
suimeng
/
helix
mirror of
https://github.com/helix-editor/helix
Watch
1
Star
0
Fork
You've already forked helix
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
a224ee5079
helix
/
helix-stdx
/
src
/
lib.rs
4 lines
41 B
Rust
Raw
Normal View
History
Unescape
Escape
Create helix-stdx crate for stdlib extensions helix-stdx is meant to carry extensions to the stdlib or low-level dependencies that are useful in all other crates. This commit starts with all of the path functions from helix-core and the CWD tracking that lived in helix-loader. The CWD tracking in helix-loader was previously unable to call the canonicalization functions in helix-core. Switching to our custom canonicalization code should make no noticeable difference though since `std::env::current_dir` returns a canonicalized path with symlinks resolved (at least on unix).
2024-01-17 02:59:48 +08:00
pub
mod
env
;
pub
mod
path
;
refactor completion and signature help using hooks
2023-12-01 07:03:27 +08:00
pub
mod
rope
;