We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 288dac4 commit c5a7333Copy full SHA for c5a7333
1 file changed
commands/open_in_explorer.py
@@ -13,7 +13,7 @@ def run(self, visible_on_platforms=None, paths=None):
13
if os.path.isdir(path):
14
self.window.run_command("open_dir", {"dir": path})
15
else:
16
- dirname, basename = os.path.splitext(path)
+ dirname, basename = os.path.split(path)
17
self.window.run_command(
18
"open_dir", {"dir": dirname, "file": basename},
19
)
0 commit comments