diff options
author | Matouš Dzivjak | 2023-11-21 11:04:20 +0000 |
---|---|---|
committer | GitHub | 2023-11-21 11:04:20 +0000 |
commit | 3052050ee0388207048318fed0909e63a2c865f9 (patch) | |
tree | 9bc894090248b06972e04730afc80abc492da208 /helix-view/Cargo.toml | |
parent | bfd60a5b39c468055f03a3339ac60546cceefc48 (diff) |
open urls with goto_file command (#5820)
* feat(commands): open urls with goto_file command
Add capability for `goto_file` command to open an URL under cursor.
Fixes: https://github.com/helix-editor/helix/issues/1472
Superseds: https://github.com/helix-editor/helix/pull/4398
* open files inside helix
* address code review
* bump deps
* fix based on code review comments
Diffstat (limited to 'helix-view/Cargo.toml')
-rw-r--r-- | helix-view/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-view/Cargo.toml b/helix-view/Cargo.toml index 6218e9e4..a5218b9a 100644 --- a/helix-view/Cargo.toml +++ b/helix-view/Cargo.toml @@ -26,7 +26,7 @@ helix-vcs = { version = "0.6", path = "../helix-vcs" } # Conversion traits once_cell = "1.18" -url = "2" +url = "2.4.1" arc-swap = { version = "1.6.0" } |