How do I exclude a folder from search in sublime text 3 permanently?

Go to the Settings menu and in the Preferences.sublime-settings file for the user and add a new node to the json named folder_exclude_patterns. In it, add the folders that you don’t want to be displayed (in json array format). Example: { // … other settings “folder_exclude_patterns”: [“node_modules”, “another_folder”], } If you want to exclude certain … Read more

How to Install Sublime Text 3 using Homebrew cask

brew install caskroom/cask/brew-cask brew tap caskroom/versions brew cask install sublime-text Weird how I will struggle with this for days, post on StackOverflow, then figure out my own answer in 20 seconds. [edited to reflect that the package name is now just sublime-text, not sublime-text3] [edit]: As of 2022-11-07, above is incorrect. See taylorthurlow’s correct answer.

How to configure Sublime Text 2/3 to use direct Ctrl+Tab order and to create new tabs after the last one?

To achieve the Ctrl+Tab and Ctrl+Shift+Tab behavior you can add the following lines to your sublime-keymap: { “keys”: [“ctrl+tab”], “command”: “next_view” }, { “keys”: [“ctrl+shift+tab”], “command”: “prev_view” } To open sublime-keymap: click “Preferences” click “Key Bindings” You will see two settings file, select a file that named “User” This is a visual example on how … Read more

How can I exclude a folder from indexing in Sublime Text, while still showing it in the sidebar?

To exclude files from the index but keep them in the sidebar, use the binary_file_patterns setting in your User Settings, for example: “binary_file_patterns”: [ “*.jpg”, “*.jpeg”, “*.png”, “*.gif”, “*.ttf”, “*.tga”, “*.dds”, “*.ico”, “*.eot”, “*.pdf”, “*.swf”, “*.jar”, “*.zip”, “node_modules/**”, “bower_components/**” ] Make sure to copy the values from your Settings – Default preferences (here shown as … Read more