- Add three proportional serif fonts: Crimson Pro, ET Book, Spectral - Fix text rendering for variable-width fonts: selection, cursor, mouse click mapping, search highlights, and syntax-colored text now use pixel-accurate measurement via ImGui::CalcTextSize() - Add per-buffer edit mode (code/writing) with auto-detection from file extension (.txt, .md, .rst, .org, .tex default to writing) - Add C-k m keybinding and :mode command to toggle edit modes - Switch config format from INI to TOML (kge.toml), with legacy INI fallback; vendor toml++ v3.4.0 - New config keys: font.code and font.writing for per-mode defaults - Add font tab completion for ImGui builds - Add tab completion for :mode command - Update help text, themes.md, and add CONFIG.md - Bump version to 1.10.0 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
22 lines
480 B
C
22 lines
480 B
C
#pragma once
|
|
#include "B612Mono.h"
|
|
#include "BerkeleyMono.h"
|
|
#include "BrassMono.h"
|
|
#include "BrassMonoCode.h"
|
|
#include "CrimsonPro.h"
|
|
#include "ETBook.h"
|
|
#include "FiraCode.h"
|
|
#include "Go.h"
|
|
#include "IBMPlexMono.h"
|
|
#include "Idealist.h"
|
|
#include "Inconsolata.h"
|
|
#include "InconsolataExpanded.h"
|
|
#include "Iosevka.h"
|
|
#include "IosevkaExtended.h"
|
|
#include "ShareTech.h"
|
|
#include "SpaceMono.h"
|
|
#include "Spectral.h"
|
|
#include "Syne.h"
|
|
#include "Triplicate.h"
|
|
#include "Unispace.h"
|