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-term/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-term/Cargo.toml')
-rw-r--r-- | helix-term/Cargo.toml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/helix-term/Cargo.toml b/helix-term/Cargo.toml index c6374de5..378f25f8 100644 --- a/helix-term/Cargo.toml +++ b/helix-term/Cargo.toml @@ -57,6 +57,10 @@ pulldown-cmark = { version = "0.9", default-features = false } # file type detection content_inspector = "0.2.4" +# opening URLs +open = "5.0.0" +url = "2.4.1" + # config toml = "0.7" |