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
ae9b6d3ea2
helix
/
helix-stdx
/
src
/
lib.rs
8 lines
96 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
;
Use a temporary file for writes (#9236) Co-authored-by: Pascal Kuthe <pascalkuthe@pm.me>
2024-04-01 06:43:09 +08:00
pub
mod
faccess
;
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
path
;
Add range type to helix stdx
2024-02-23 04:47:12 +08:00
pub
mod
range
;
refactor completion and signature help using hooks
2023-12-01 07:03:27 +08:00
pub
mod
rope
;
Add range type to helix stdx
2024-02-23 04:47:12 +08:00
pub
use
range
::
Range
;