expand_path only if the match starts with ~

This commit is contained in:
Brett Bender 2023-10-20 10:10:01 -07:00
parent c9c6d8e79b
commit b2f7567d0a
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ module Fingers
# This takes care of some path expansion weirdness when opening paths that start with ~ in MacOS
def expanded_match
return match unless action == ":open:"
return match unless action == ":open:" && match.starts_with?("~")
Path[match].expand(base: original_pane.pane_current_path, home: Path.home)
end