# Replace tabs with spacesSettings->Language->TabSettings->ReplacebyspaceandTabsize:4# Show hidden characters ( spaces and tabs )View->ShowSymbol->showWhiteSpaceandTAB
# Format json:Ctrl+Shift+Alt+m
# Base64 decode:Plugins->MIMEtools->Base64decode
Vim
# Create vim config file1.vim~/.vimrc
2.writesomebasicsettingsin:
setrulerlaststatus=2numbertitlehlsearch
syntaxon
3.ESC->:wq
## Random commands# Paste from clipboard:Mouserightclick
# Re-doCtrl+r
# UndoEsc->u
# SearchEsc->/
# Find and replace:%s/old_text/new_text
# Open terminal:ter
# Refresh current fileEsc->:e!
## Moving# Move to start of a lineEsc->0# Move to start of a lineEsc->0# Move forward one word (next alphanumeric word)Esc->w
# Move forward one word (delimited by a white space)Esc->W
# Move to the beginning of the file:Esc->gg
# Move to the end of the file:Esc->G
# Setup FTP connection.1.InstallFTP-simple2.modifyconfig-file(pressF1->ftp-simple:config-FTPsettings)[{"name":"raspberry pi","host":"192.168.1.35","port":22,"type":"sftp","username":"USERNAME_HERE","password":"","promptForPass":false,"path":"/home/USERNAME_HERE/","autosave":true,"confirm":false,"readyTimeout":99999,"privateKey":"C:\\path\\to\\ssh\\private_key.ppk","passphrase":"SSH_KEY_PASSWORD_HERE"}]3.Usage:PressF1->ftp-simple:Remote-remotedirectoryopentoworkspace# Show white spaces:View->RenderWhitespace