I don't understand how to setup ftp on Sublime.
I downloaded Package Control and then I installed Sublime sftp.
So now I need to enter my credentials, which I see when I go to File, SFTP, Setup Server, BUT:
What do I do once I change the untitled document? Where do I save it so that sublime uses it?
The file should automatically be saved in the correct place once you hit Save. This directory is Packages/User, where Packages is the directory opened in your operating system's file manager (Windows Explorer, Finder, Nautilus, etc.) when selecting Preferences → Browse Packages…. This directory varies by operating system and installation type (standard vs. portable), but for standard installs the locations generally are as follows (replace the 3 with 2 for Sublime Text 2):
Linux:
~/.config/sublime-text-3/Packages/User
Windows:
C:\Users\username\AppData\Roaming\Sublime Text 3\Packages\User
Mac OS X:
~/Application Support/Sublime Text 3/Packages/User
For OS X and Linux, ~ indicates your home directory (/Users/username and /home/username, respectively).
Related
I am trying to set up a chrome master preferences file so that all the students in my school have the correct tabs pre-opened when they launch chrome for the first time. I am following the instructions, here.
However, placing the master_preferences file in either of the locations mentioned in the article works. Has anyone else had any success setting this up on Mac OSX?
The locations I am trying are:
~/Library/Application Support/Google/Google Master Preferences File/master_preferences
and
/Library/Google/Google Chrome Master Preferences/master_preferences
I am also trying renaming the master_preferences file to 'Google Chrome Master Preferences' in both of those locations. So far no permutation of their instructions seems to work.
You used
~/Library/Application Support/Google/Google Master Preferences File/master_preferences
But the support page says to use
~/Library/Application Support/Google/Chrome/Google Chrome Master Preferences
In other words, the directory is ~/Library/Application Support/Google/Chrome, and the file name is Google Chrome Master Preferences. (The file name is master_preferences on Windows, not on Mac.)
I want to uninstall Sublime Text completely so I can reinstall it and reconfigure some settings. After I uninstall and reinstall a fresh new version. The previous settings and bugs (An extension errors keeps popping up) keep coming up. How and where do I go to you erase those settings?
It's OS-dependent. What's probably happening is not all of your files are getting erased when you uninstall. You will need to manually delete these files. First, completely uninstall. Then manually delete the data folder. The location of the folder is OS and version (ST2 or ST3) dependent:
If you are on a Mac using ST2:
~/Library/Application Support/Sublime Text 2/
If you are on a Mac using ST3:
~/Library/Application Support/Sublime Text 3/
If you are on a PC using ST2:
<username>/AppData/Roaming/Sublime Text 2/
If you are on a PC using ST3:
<username>/AppData/Roaming/Sublime Text 3/
If you are on Linux using ST2:
~/.config/sublime-text-2
If you are on Linux using ST3:
~/.config/sublime-text-3
(thanks #MattDMo for Linux ST3 info)
Source: https://www.sublimetext.com/docs/2/revert.html
Hope that helps.
I am using Sublime Text 2 for Mac. I have installed the Package Control for Sublime Text 2, following the instructions from https://sublime.wbond.net/installation#st2 without any trouble. However, when I open up Ctrl+Shif+P to search for available packages, it does not show any.
See the image screenshot here
Do you have any solutions for it? I try restart Sublime but it doesn't solve the problem.
Take a look in your user Preferences.sublime-settings and remove the Package Control from the "ignored_packages" list if it is there.
If you use a Linux based system, you may have to check permissions of /home/user/.config/sublime-text-3. Check if the directory is owned by your user. If not, change the owner user for that directory.
Click the Preferences > Browse Packages and check whether Package control file is there or not.
You can manually put package control file there by downloading it from here and get rid of issues.
I had the same problem. I had to restart my computer to properly reset Sublime Text 2. It seems from your comment that you also got the Package Control list to show up after restarting your computer.
Your screenshot image is currently broken, but make sure you have the zipfile "Package Control.sublime-package" in the Installed Packages directory.
Open the console and run this command:
curl http://sublime.wbond.net/Package%20Control.sublime-package -o ~/Library/Application\ Support/Sublime\ Text\ 2/Installed\ Packages/Package\ Control.sublime-package
Then restart sublime.
See this issue: https://github.com/wbond/sublime_package_control/issues/652
The Nitrous.io IDE appears to have 4 parts. There's a file browser, a text editor, a console/terminal, and a chat window. It appears that the only way to open a file in the text editor is from the file browser. This only allows me to open files within my home directory. Is there any way to open files in the text editor from the console?
Shift-Ctrl P is available to Go to File... which seems similar to sublime functionality.
You cannot open a file from the shell into the web interface because the web interface is not linked to the shell. The shell is a SSH terminal, which means you can alternately terminal editors such as vi, vim, nano, or emacs.
You can use vim or emacs in the console to edit code. You can maximize the console to take up the entire window, which is a nice coding experience.
http://help.nitrous.io/ide-fullscreen/
You should be able to access any file on your box from the file browser; note that there is also a button at the bottom of the file browser to enable you to show hidden files.
If you're on a Mac, you can also check out our Mac application that will allow you to use your favorite Mac OS X text editor. It also provides shortcuts to manage your boxes on Nitrous.IO:
https://www.nitrous.io/mac
I installed Sublime text 2 on my windows system . I'm trying to create a shortcut that would open the command line on the current file directory like i can using notepad++ . Also , on a similar note , how do i use/create shortcuts for "Open containing folder" in a way notepad++ allows me.
I think what you're looking for is the Terminal plugin by wbond, the author of Package Control. You can right-click and select Open Terminal Here... or use the CtrlShiftT keybinding to open a terminal at any file's directory, or use CtrlAltShiftT to open it at the directory containing the current project file.