how do I change the cursor style in Sublime Text 3
Hit Insert That’ll change it back. You might have noticed that if you went back on code and typed some you’d be overwriting instead of inserting.
Hit Insert That’ll change it back. You might have noticed that if you went back on code and typed some you’d be overwriting instead of inserting.
I would use a multiple cursors approach like this: Windows Ctrl + A (Select everything) Ctrl + Shift + L (Split into lines) End (Put the cursor at the end of the line) ” (Add the quote at the end of the line) Home (Go to the first character of the line) Home (Go to … Read more
Click on View (check the mouse arrow/pointer in below image) on top menu bar or hit Alt + V and click Hide Minimap
On OSX, at least, the Default.sublime-package is in the application itself: /Applications/Sublime Text.app/Contents/MacOS/Packages/Default.sublime-package. To edit the config easily without changes being overwritten on update, you need a copy of Main.sublime-menu in your Packages directory ~/Library/Application Support/Sublime Text 3/Packages/Default/Main.sublime-menu The easiest way to effect these changes is to install the excellent PackageResourceViewer by skuroda (using Package … Read more
For How do I change the overall colors (background and font)? For MAC : goto Sublime text -> Preferences -> color scheme
Open Goto Anything or Goto Line (accessible from the Goto menu, if you are not using keyboard shortcuts). Type ::N where N is the Nth character in the file that you want to go to. i.e. precede the number with 2 colons. (Goto Line will prefill one :, so you only have to type one … Read more
In April 2015 Emmet added support for jsx, but it doesn’t work by default. Well, for my surprise it was actually working with the control + E shortcut, but I wanted to use the TAB key to expand. Following the official instructions did the trick for me. Basically, I had to paste the following inside … 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
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!
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