Skip to content

Commit

Permalink
Merge pull request #1165 from Sasanidas/fix-find-file-otherwindow
Browse files Browse the repository at this point in the history
Fix the pathname detection
  • Loading branch information
cxxxr authored Nov 28, 2023
2 parents de59e99 + d5f2383 commit 0584267
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/commands/file.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@
:directory (buffer-directory)
:default nil
:existing nil))
((pathnamep arg)
((or (pathnamep arg)
(uiop:absolute-pathname-p arg))
(namestring arg)))))
(let (buffer)
(dolist (pathname (expand-files* filename))
Expand Down

0 comments on commit 0584267

Please sign in to comment.