/
githubmirror
/
FiraCode
Обзор
Документация
Войти
/
githubmirror
/
FiraCode
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
clojure/fira_code/not_space.clj
13 строк
530 B
Nikita Prokopov
Updated Clojure generator to Glyphs formatVersion 3
02 мар 2026, 22:07
02 мар 2026, 22:07
1c4866e
Код
Авторство
О чём код?
(ns fira-code.not-space (:require [clojure.string :as str] [fira-code.glyphs :as glyphs])) (defn regen-not-space [font] (let [not-spaces (->> (:glyphs font) (remove #(re-find #"^\.|space$|space\." (:glyphname %))) (remove #(= "0" (:export %))) (map :glyphname) (sort))] (println " regenerated NotSpace:" (count not-spaces) "glyphs") (glyphs/update-code font :classes :name "NotSpace" (constantly (str/join " " not-spaces)))))