Skip to content

Instantly share code, notes, and snippets.

View core-code's full-sized avatar

CoreCode core-code

View GitHub Profile
@core-code
core-code / sort_like_bbedit_does_it.py
Last active May 26, 2023 16:47
sort a file exactly like BBEdit
#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
import sys
from functools import cmp_to_key
def cmp_items_inner(a, b):
if len(a) > 0 and len(b) == 0:
return 1
elif len(a) == 0 and len(b) > 0: