-
Notifications
You must be signed in to change notification settings - Fork 0
Editing Tools help
SaeHie Park edited this page Aug 27, 2019
·
16 revisions
Now my main editing tool in Linux...
https://code.visualstudio.com/
https://gist.github.com/seanshpark/d26cf6d7fd8cbe9a722b0e3f4ad70d46
Open user settings and add...
{
"http.proxyStrictSSL": false,
"http.proxy":"http://proxyserver:port/",
"https.proxy":"http://proxyserver:port/"
}
Related issue: https://github.com/Microsoft/vscode/issues/155
// Enables parameter hints
"editor.parameterHints": false,
// Controls if suggestions should automatically show up when typing trigger characters
"editor.suggestOnTriggerCharacters": false,
// Controls if quick suggestions should show up or not while typing
"editor.quickSuggestions": false,
// Enable word based suggestions.
"editor.wordBasedSuggestions": false
-
Press Ctrl+Shift+P to bring up the Command Palette and type "config"
-
Select "Configure Language"
-
locale.json
file will show up -
change
//"locale":"ko" "locale":"en"
It's somewhere in C:\Users\(uid)\AppData\Roaming\Code\User
Reference: https://code.visualstudio.com/docs/customization/locales
https://github.com/SublimeText/TrailingSpaces
- download https://github.com/SublimeText/TrailingSpaces/archive/master.zip
- "Preferences > Browse Packages", this will open a explorer window
- copy extracted folder "TrailingSpaces-master" to packages folder
- restart editor
1 clone https://github.com/zyxar/Sublime-CMakeLists to CMake
cd ~/.config/sublime-text-2/Packages
git clone https://github.com/zyxar/Sublime-CMakeLists CMake
in Mac, its (home)Library/Application Support/Sublime Text 2/Packages
2 restart editor
Good help