mirror of
https://github.com/wez/wezterm.git
synced 2024-12-02 11:03:49 +03:00
e200605b8f
With this configuration: ```lua local wezterm = require 'wezterm' return { font_dirs = {"/Users/wez/Downloads/Inconsolata"}, font = wezterm.font("Inconsolata"), font_locator = "ConfigDirsOnly" } ``` wezterm is now able to see the 74 variations that are available in the single inconsolata ttf. Running `WEZTERM_LOG=wezterm_font=trace wezterm` will log the variations. refs: https://github.com/wez/wezterm/issues/655
8 lines
203 B
C
8 lines
203 B
C
#include <ft2build.h>
|
|
#include <freetype/freetype.h>
|
|
#include <freetype/ftlcdfil.h>
|
|
#include <freetype/tttables.h>
|
|
#include <freetype/ftmodapi.h>
|
|
#include <freetype/ftoutln.h>
|
|
#include <freetype/ftmm.h>
|