📋 Copy All Commands
📄 Generate PDF
Atajo Descripción Ctrl+Shift+TNueva pestaña Ctrl+Shift+WCerrar pestaña Ctrl+TabPestaña Siguiente Ctrl+Shift+TabPestaña anterior Ctrl+Shift+1-9Ir a la pestaña 1-9 Alt+Shift+DDividir Panel Verticalmente Alt+Shift+-Dividir Panel Horizontalmente Alt+ArrowNavegar entre paneles Alt+Shift+ArrowCambiar tamaño del panel Ctrl+Shift+WCerrar Panel
Atajo Descripción Ctrl+Shift+NNueva Ventana Alt+F4Cerrar ventana F11Alternar Pantalla Completa Ctrl+,Abrir Configuración Ctrl+Shift+PAbrir Paleta de Comandos Alt+EnterAlternar Pantalla Completa
Atajo Descripción Ctrl+Shift+CCopiar Ctrl+Shift+VPegar Ctrl+ASeleccionar Todo Shift+ClickExtender Selección Ctrl+Shift+FEncontrar F3Buscar Siguiente Shift+F3Buscar anterior Ctrl+Shift+HBuscar y Reemplazar
Atajo Descripción Ctrl+Shift+SpaceAbrir Desplegable Ctrl+Shift+1Abrir Perfil 1 Ctrl+Shift+2Abrir Perfil 2 Ctrl+Shift+3Abrir Perfil 3 Ctrl+Shift+4Abrir Perfil 4 Ctrl+Shift+5Abrir Perfil 5
Atajo Descripción Ctrl+=Aumentar Tamaño de Fuente Ctrl+-Disminuir Tamaño de Fuente Ctrl+0Restablecer Tamaño de Fuente Ctrl+Shift+ScrollWheelZoom
Atajo Descripción Ctrl+Shift+DDuplicar pestaña Ctrl+Shift+TNueva pestaña con el mismo perfil Alt+ClickAbrir Hipervínculo Ctrl+ClickRuta de archivo abierta
Comando Descripción wtAbrir Windows Terminal wt -p "Profile Name"Abrir con perfil específico wt new-tabAbrir nueva pestaña wt split-paneDividir panel actual wt -d C:\pathAbrir en directorio específico
\\\\{
"command" : "newTab" ,
"keys" : "ctrl+t"
\\\\ },
\\\\{
"command" : "closeTab" ,
"keys" : "ctrl+w"
\\\\ },
\\\\{
"command" : "splitPane" ,
"keys" : "alt+shift+d" ,
"split" : "vertical"
\\\\ }
```## Integración de Línea de Comandos
```json
\\\\{
"name" : "PowerShell" ,
"commandline" : "powershell.exe" ,
"hidden" : false ,
"colorScheme" : "Campbell" ,
"fontSize" : 12 ,
"fontFace" : "Cascadia Code"
\\\\ }
```## Ejemplos de Configuración
### Combinaciones de Teclas Personalizadas
```json
\\\\{
"name" : "Custom Dark" ,
"background" : "#0C0C0C" ,
"foreground" : "#CCCCCC" ,
"black" : "#0C0C0C" ,
"blue" : "#0037DA" ,
"brightBlack" : "#767676" ,
"brightBlue" : "#3B78FF"
\\\\ }
Configuración de Perfiles
# Navigation
Set-Location C:\path\to\directory
Get-ChildItem # List files
Get-Location # Current directory
# File Operations
New-Item - ItemType File - Name "filename.txt"
New-Item - ItemType Directory - Name "foldername"
Copy-Item source.txt destination.txt
Remove-Item filename.txt
# System Information
Get-ComputerInfo
Get-Process
Get-Service
Get-EventLog - LogName System - Newest 10
Esquemas de Color
# Add to PowerShell profile
Set-Alias ll Get-ChildItem
Set-Alias grep Select-String
Set-Alias which Get-Command
Integración de PowerShell
Comandos Útiles de PowerShell
# List WSL distributions
wsl --list --verbose
# Set default distribution
wsl --set-default Ubuntu
# Open WSL in Windows Terminal
wsl
# Run specific command in WSL
wsl ls -la
Alias de PowerShell
\\\\{
"name" : "Ubuntu" ,
"source" : "Windows.Terminal.Wsl" ,
"commandline" : "wsl.exe -d Ubuntu" ,
"startingDirectory" : "//wsl$/Ubuntu/home/username"
\\\\ }
Integración de WSL
Comandos de WSL
# Multi-pane development environment
# Pane 1: Code editor
code .
# Pane 2: Development server
npm start
# Pane 3: Git operations
git status
# Pane 4: File watching/testing
npm test -- --watch
Configuración de Perfil de WSL
# System monitoring panes
# Pane 1: Process monitoring
Get-Process | Sort-Object CPU - Descending
# Pane 2: Event log monitoring
Get-EventLog - LogName System - Newest 20
# Pane 3: Service status
Get-Service | Where-Object \\\\{ $_ .Status -eq "Running" \\\\}
# Pane 4: Network monitoring
netstat - an
Flujos de Trabajo de Productividad
Configuración de Desarrollo