Hello,
On sublime text 2, I do not find how to see the file path.
Is possible to have this kind of bar
I use MAC
Hello,
On sublime text 2, I do not find how to see the file path.
Is possible to have this kind of bar
As a really crude example of a plugin:
import sublime, sublime_plugin
import os
class BreadcrumbsCommand(sublime_plugin.WindowCommand):
def __init__(self, window):
file_name = window.active_view().file_name()
file_name = file_name.strip('/').replace('/', ' > ')
return sublime.status_message(file_name)
This will show you the current file path.
A few things you can do:
First, turn this on in your settings:
“show_full_path”: true,
That will give you the full path in the apps header bar
then you can also ⌘ + Click the header bar for a dropdown: