Deactivate Right Click Preview

I am on Windows (7 and XP, 64 bit and 32 bit). When I right-click on a file, it opens inside the editor (which is sometimes convenient, but mostly annoying, for example, for pdf, etc.). Is it possible to stop the sublime text when opening files by right-clicking?

Note. I have a plugin installed SideBarEnhancement.

+4
source share
1 answer

This is the default action for the sidebar - if you click on a file (right-click or left), a preview will open in the editor. To avoid this, open Preferences -> Settings - Userand add

"preview_on_click": false

. , .

- , . :

"file_exclude_patterns": ["*.pyc", "*.pyo", "*.exe", "*.dll", "*.obj","*.o", "*.a", "*.lib", "*.so", "*.dylib", "*.ncb", "*.sdf", "*.suo", "*.pdb", "*.idb", ".DS_Store", "*.class", "*.psd", "*.db", "*.sublime-workspace"]

- , , , . , "*.pdf", "*.tif", "*.jpg" .. , .

, - :

"folder_exclude_patterns": [".svn", ".git", ".hg", "CVS"]

, "images", , -.

!

+11

All Articles