Posts

Showing posts with the label sublime text

Use FileBrowser package as the right sidebar of Sublime Text 3

Image
Do you want to move the sidebar of Sublime Text from the left to the right like me? Unfortunately, you can not do that. The sidebar is not movable. But, the good news is there is an alternative solution which is great: FileBrowser for SublimeText Github repo: https://github.com/aziz/SublimeFileBrowser What we are going to do to have a right sidebar is to use FileBrowser package in a split windows mode (and you should hide the default sidebar via menu View > Sidebar > Hide sidebar). 1. Install SublimeText's Package Control: a. Open the console by enter "CTRL + `" combination keys b. Paste this into the console: import urllib.request,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'htt...

Enable long line words wrap in Sublime Text 3

Add this line to Preferences >> Settings-User : "word_wrap": "true",

Sublime Text - How to show White Space and Indentation Guides

To show White Space and Indentation Guides (Tab) in Sublime Text: * Open Preferences menu, choose Setting - User to open the Preferences.sublime-settings file, add this line: "draw_white_space": "all",