Skip to content

Instantly share code, notes, and snippets.

@openopen114
openopen114 / fast_delete.bat
Created November 10, 2023 00:41 — forked from Tyxz/fast_delete.bat
Windows bat-script to fast delete a folder and all sub-directories with a cmd command.
@ECHO OFF
CLS
ECHO ######################################
ECHO # Fast delete folder and sub-folders #
ECHO ######################################
ECHO.
ECHO.
set /P c=Delete %CD% [Y/N]?
if /I "%c%" EQU "Y" goto :DELETE
if /I "%c%" EQU "J" goto :DELETE
@openopen114
openopen114 / tab-trigger.js
Created January 26, 2019 06:03 — forked from wesbos/tab-trigger.js
How to properly get a TAB trigger working with Emmet inside of JSX
{
"keys": ["tab"],
"command": "expand_abbreviation_by_tab",
// put comma-separated syntax selectors for which
// you want to expandEmmet abbreviations into "operand" key
// instead of SCOPE_SELECTOR.
// Examples: source.js, text.html - source
"context": [
{