Sublime Forum

How can I open Prefence folders under running Window?

#1

I personally love to use single window than multiple. It feels more organized and also allows me to work faster (personal preference) :slight_smile:

But preference folders always open as new window

How can I open them under current window and not as new window?

PS: I have even tried this setting in settings:

“open_files_in_new_window”: false

0 Likes

#2
1 Like

#3

Hi,
Where should I create this file? Please dont mind; I am a new bee :slight_smile:

If you want to do this, you can create a Main.sublime-menu such as:

[
    {
        "caption": "Preferences",
        "mnemonic": "n",
        "id": "preferences",
        "children":
        [
            {
                "command": "open_file", "args":
                {"file": "${packages}/User/Preferences.sublime-settings"},
                "caption": "Settings – User"
            }
        ]
    }
]
0 Likes

#4

You would create the file in your User package (Preferences > Browse Packages... if you don’t know where that is).

1 Like

#5

Done, but its still opening settings folder in new window

0 Likes