Skip to content
SaeHie Park edited this page Aug 27, 2019 · 16 revisions

Visual Studio Code

Now my main editing tool in Linux...

https://code.visualstudio.com/

Settings

https://gist.github.com/seanshpark/d26cf6d7fd8cbe9a722b0e3f4ad70d46

Installing plugins behind proxy firewall

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

Disable dropdowns

// 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

Change to english(menu and stuff)

  1. Press Ctrl+Shift+P to bring up the Command Palette and type "config"

  2. Select "Configure Language"

  3. locale.json file will show up

  4. change

    //"locale":"ko"
    "locale":"en"
    

It's somewhere in C:\Users\(uid)\AppData\Roaming\Code\User

Reference: https://code.visualstudio.com/docs/customization/locales

Sublime Text 2

Show trailing spaces as RED background

https://github.com/SublimeText/TrailingSpaces

  1. download https://github.com/SublimeText/TrailingSpaces/archive/master.zip
  2. "Preferences > Browse Packages", this will open a explorer window
  3. copy extracted folder "TrailingSpaces-master" to packages folder
  4. restart editor

CMake

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

VIM

Good help

Clone this wiki locally