How can I do a column select across the entire file?
This should do it: Ctrl+A – select all. Ctrl+Shift+L – split selection into lines. Then move all cursors with left/right, select with Shift+left/right. Move all cursors to start of line with Home.
This should do it: Ctrl+A – select all. Ctrl+Shift+L – split selection into lines. Then move all cursors with left/right, select with Shift+left/right. Move all cursors to start of line with Home.
Thanks to Alex, it turned out kind of simple, Preferences > Key Bindings > User: { “keys”: [“super+shift+w”], “command”: “close_all” } No need to restart Sublime, it works right away. And what’s even better, no need to get used new shortcuts, you can still close Sublime window with Cmd-W after all tabs are gone.
press CTRL + Shift + P in Submile Text below popup opens Click on the Package Control: Install Package.which will open the below popup. Type SCSS in the search box. Look for exactly: SCSS (it may not be the first thing that comes up) and click on it. again press CTRL + Shift + P … Read more
Sublime Text 3 does not allow you to change default settings in the Settings – Default file. This is because this file gets overwritten each time the program is upgraded, losing all of your settings. To change settings, choose Preferences -> Settings – User, create an empty object if the file has no contents: { … Read more
Open Sublime Text. Select Preferences from the top menu and click Key Bindings – User. Here you will see a JSON file that should contain an array of objects (initially the array is empty). Every object will represent a shortcut. Add the following (new shortcut object) entry into the array (between the brackets): { “keys” … Read more
It’s a macOS feature that was added with Sierra It can be disabled globally via System Preferences -> Keyboard -> Text and unchecking Add period with double-space as per the article instructions. Quite a handy feature for most things but was driving me to distraction trying to edit .md files!
The best way is to sync the User directory, there are multiple available ways to do this – dropbox, git and manual ways. Installed packages are registered in Package Control.sublime-settings, which is located in the user folder as well, thus, it does not require you to sync anything besides that. A pretty good guide to … Read more
This is because you were only previewing the previous file. If you click on a file once in the sidebar, by default it opens in preview mode. Clicking another file will open it in preview mode, in the same tab. You can disable this behavior by double-clicking the file in the sidebar, by beginning to … Read more
If you activate the environment you’re interested in, you can find that answer in the environment variables. on MacOS/Linux: source activate python35 echo $CONDA_PREFIX on Windows: conda activate python35 echo %CONDA_PREFIX% You can also run conda info –envs, and that will show the paths to all your environments. To get the path to the instance … Read more
Obvious feature is not implemented, though I suggest you to use Sidebar Enhancements, a really great plugin to manage the sidebar stuff in ST2/3. (Jul. 24, 2017: Only ST3 as the repo notes) Though it may seem obvious, but the sidebar is really poor in sublime text. There are requests on the official userecho page … Read more