VS Code

 VS Code

En este apartado, solo abordo aspectos relevantes y generales orientados a un eficiente uso/inicio en VS Code. Una selección que orienta a las buenas prácticas y uso más frecuente para acelerar el proceso de inicio hacia un uso en nivel avanzado o prácticas comunes de expertos. Lo demás, con el suo de la interfaz gráfica se adquiere de manera intuitiva y la ejecución del Get Started.

Se asume:

  • Conocimiento báse de la utilidad de esta herramienta y las valoraciones o comparaciones con otras interfaces.

Requerimientos e instalación:

Abrir

 Iniciar la terminal y ejecutar: 

  1.    code .
  2.    cd "path"

   code . 

Visualización General

  • Interfaz de usuario <Userinterface>


Barra de Actividades:


  • Ajustes y Configuraciones <Customization>
Layout:

Se puede cambiar la posición de  la Barra Primaria o ocultarla (Ctrl+b)
Algunos lo mueven a la derecha

Depende de que tengas que hacer y según el requerimiento de desplazamiento configurarlo a la forma que implique menos segúndos.

  • Relevantes y Básicos <Shorcuts>

Desplazarse por archivos <fiels>: Ctrl+Shift+E

Split Editor: Ctrl+\

CTRL+shift+p

Keyboard Shortcut: Ctrl+K Ctrl+S

        Ctrl+ñ: abrir o iniciar terminal

Ctrl+F: buscar

Ctrl+s : Guardar

Cambiar la Terminal:

Open terminal: Ctrl+shift+ñ

Por defecto en Windows abre Power Shell, para cambiar la terminal:

Seleccionar la terminal de preferencia en la lista desplegable de lanzamiento de perfil.

 Seleccionarla como default 

Crear nuevo archivo desde la terminal

code filename.extensióndearchivo

Configurar Nuevos Atajos de Teclado

File, Preferencias, Shortcuts

Configurar: Keybinding and when 

 


  • Debugger
  • Search


Integracion de Controlador de Versiones - Git

Integrando Git

- Installar git para windows

https://git-scm.com/download/win

- Reload VS Code

- Open Source Control: Ctrl+Shift+g

-Iniciar repositorio o publicar

    commit inicial, contrt+enter


  • Inicio de Sesión y Configuración

-Open Bash

    - Run Git configuration user

Git bash

    Run


  git config --global user.email "you@example.com"
  git config --global user.name "Your Name"

Ejecutar para conectar VSCode con Hithub

  • Inicializar repositorio
Ejecutar cualquier <Git-Version Control Action> (Views and more actions de Source Control -... parte superior derecha-)
  • Commit
  • Create brach
  • Publish Branch
  • Clone

Concepts:

-----
Control character or non-printing character (NPC) is a code point (a number) in a character set, that does not represent a written symbol. And the "space" is a exception of characters, is no printable. Control characters have also been called "format effectors", CR and LF are control character.

Bytecode (also called portable code or p-code]) is a form of instruction set designed for efficient execution by a software interpreter. 

CR and LF are control characters or bytecode that can be used to mark a line break in a text file.

CR = Carriage Return (\r, 0x0D in hexadecimal, 13 in decimal) — moves the cursor to the beginning of the line without advancing to the next line.

LF = Line Feed (\n, 0x0A in hexadecimal, 10 in decimal) — moves the cursor down to the next line without returning to the beginning of the line.

A CR immediately followed by a LF (CRLF, \r\n, or 0x0D0A) moves the cursor down to the next line and then to the beginning of the line.
-----

CR: Carriage Return - MacOS Clasico

LF: Line Fedd - Linux, Unix, Mac OS

CRLF: convination of CR and LF - Windows

UTF-8: UCS Transformation Format 8, is a character encoding, the most popular in the World Wide Web. Each character is represented by one to four bytes, is backward-compatible with ASCII and can represent any standard Unicode character. The first 128 UTF-8 characters precisely match the first 128 ASCII characters (numbered 0-127).


Código abiert: cualquier sistema operativo


Fuentes:

https://developer.mozilla.org/en-US/docs/Glossary/UTF-8

Entradas populares

SQL