Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
ce9d1d3f
Commit
ce9d1d3f
authored
Oct 25, 2023
by
Stefan Kangas
Browse files
Support HTTPS in ido-file-internal
* lisp/ido.el (ido-file-internal): Support HTTPS.
parent
aa79a5fc
Pipeline
#26917
failed with stage
in 7 minutes and 29 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
lisp/ido.el
lisp/ido.el
+1
-1
No files found.
lisp/ido.el
View file @
ce9d1d3f
...
...
@@ -2326,7 +2326,7 @@ If cursor is not at the end of the user input, move to end of input."
(
if
(
eq
ido-use-filename-at-point
'guess
)
(
ffap-guesser
)
(
ffap-string-at-point
))))
(not (string-match
"\\`http
:/" fn)))
(
not
(
string-match
(
rx
bos
"http"
(
?
"s"
)
"
:/"
)
fn
)))
(
let
((
absolute-fn
(
expand-file-name
fn
)))
(
cond
((
file-directory-p
absolute-fn
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment