AutoHotKey의 Javascript 연산자
소프트웨어는 소프트웨어 시장의 일부가 될 수 있으며 JavaScript(o TypeScript) 코드를 작성하는 것이 유용합니다.
Con AutoHotKey puedes re-mapear el comportamiento de algunas teclas para escribir de forma fácil y rápida todos esos operatores que usamos en el día a día.
Debes 테너 설치 AutoHotKey y crear un archivo llamado
js-remapkeys.ahk
콘 에스테 스크립트.#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
!7::Send {&}{&} ; Alt+7 -> &&
!9::Send {=}{>} ; Alt+9 -> =>
!+9:: Send {(}{)}{ }{=}{>} ; Shift+Alt+9 -> () =>
!\::Send {|}{|} ; Alt+\ -> ||
!=:: Send {=}{=}{=} ; Alt+= -> ===
!+=:: Send {!}{=}{=} ; Shift+Alt -> !==
!,:: Send {<}{/}{>}{left 1} ; Alt+, -> </>
!.:: Send {?}{.} ; Alt+. -> ?.
!+,:: Send {<}{=} ; Shift+Alt+, -> <=
!+.:: Send {>}{=} ; Shift+Alt+. -> >=
!+;:: Send {?}{:} ; Shift+Alt+; -> ?:
!+/:: Send {?}{?} ; Shift+Alt+/ -> ??
Guarde el archivo y ábralo con AutoHotkey.
Asi de fácil, puedes tener un teclado vitaminado para escribir codigo JS/TS a toda velocidad.
그게 다야!
행복한 코딩 🖖
Reference
이 문제에 관하여(AutoHotKey의 Javascript 연산자), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/equimancho/operadores-de-javascript-con-autohotkey-3o74텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)