diff options
author | ath3 | 2021-12-12 12:13:33 +0000 |
---|---|---|
committer | GitHub | 2021-12-12 12:13:33 +0000 |
commit | 3156577fbf1a97e07e90e11b51c66155f122c3b7 (patch) | |
tree | 68737bb61179ebf073895122d19bbf8bc38b5d44 /helix-core/src/lib.rs | |
parent | 3307f44ce20a71273614f9b30dafb08822e557a1 (diff) |
Open files with spaces in filename, allow opening multiple files (#1231)
Diffstat (limited to 'helix-core/src/lib.rs')
-rw-r--r-- | helix-core/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs index 4ae044cc..92a59f31 100644 --- a/helix-core/src/lib.rs +++ b/helix-core/src/lib.rs @@ -17,6 +17,7 @@ mod position; pub mod register; pub mod search; pub mod selection; +pub mod shellwords; mod state; pub mod surround; pub mod syntax; |