Monday, December 4, 2023

vscode

  •  select a column
    • click once on the top position
    • alt + shift + keep left click mouse to select a colum
  • disable autocompletion in txt files
    • ~/Library/Application Support/Code/User/settings.json

    "[plaintext]": {
      "editor.suggest.showSnippets": false,
      "editor.suggest.showWords": false,
      "editor.acceptSuggestionOnCommitCharacter": false,
      "editor.acceptSuggestionOnEnter": "off"
    }