Skip to content

Instantly share code, notes, and snippets.

@osoda
Last active May 3, 2023 17:43
Show Gist options
  • Save osoda/107c44456133038d0665c287e4e84c17 to your computer and use it in GitHub Desktop.
Save osoda/107c44456133038d0665c287e4e84c17 to your computer and use it in GitHub Desktop.
Shortcuts VSCode Para trabajar en la terminall

Proyecto

  • Navegar entre proyectos:

    Ctrl+r

Terminal

  • Cambiar de terminal. Focus en terminal

    Ctrl+Shift+9 (up) | Ctrl+Shift+8 (down)

  • Adiccionar nueva terminal

    Ctrl+Shift+ñ

  • Terminar terminal

    • Hay que configurrar el shortcut: Abrir la ventana de comandos (Ctrl+Shift+p) Digitar: Kill Terminal y darle click a la TUERQUITA (Configuracion). En esa ventana se puede colocar el shortcut que quiera. Le colocamos:

    Ctrl+Shift+.

Task - En la terminal. Conectarse al servidor con ssh y archivo RSA

  • Tarea
{
  // See https://go.microsoft.com/fwlink/?LinkId=733558
  // for the documentation about the tasks.json format
  "version": "2.0.0",
  "tasks": [
    {
      "label": "Connect Ssh",
      "type": "shell",
      "command": "ssh -2 -p 22 -l usuario -i /c/Users/Computador/.ssh/archivo_rsa 192.0.0.1"
    }
  ]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment