Wang Kai
Wang Kai
Press `C-,`, input some characters and press `C-g` to quit. Then, press `Up` or `Down` will not work. It seems bebop doesn't refocus on the current page, though, it is...
Set `mini-modeline-display-gui-line` to `t`, and keep pressing `C-f` (or `C-b`), minibuffer will keep refreshing.
Note that face `header-line` inherit from `mode-line` by default, so set `mode-line` height to 0.14 will also make `header-line` a thin line.
## Expected behavior M-x projectile-replace or `C-c p r`, replace the function name in the git project. ## Actual behavior It does nothing but put the message 'All files processed'....
If we create `CTFont` from font descriptor, we will lose font variations, and use `new_from_name` instead will fix it. [CTFontDescriptor](https://developer.apple.com/documentation/coretext/ctfontdescriptor?language=objc) is essentially a dictionary of font attributes.
This reverts commit ec11b73c4801444dd3eabe9d334ec644d66fc5b3. Sorry, but I think I made a [mistake](https://github.com/servo/font-kit/pull/162), actually the memory leaking was caused by https://github.com/servo/core-foundation-rs/commit/dc588497db727a3ba943aaecc83d2a07dc6d6b0a cc @jrmuizel
The reason probably is DirectWrite providing [more performant API](https://github.com/servo/dwrote-rs/blob/45a92d0a1776a3ce9be281c843fec580fcd727f6/src/font_file.rs#L33) which in some case don't need to read file I suppose? When it comes to Mac OSX, we just directly read...
https://github.com/servo/font-kit/blob/63d319cb2e619f1b4e4c1d1db533bbdc49044cea/src/loaders/core_text.rs#L168-L170 Maybe there is a [better API](https://developer.apple.com/documentation/coretext/1499491-ctfontmanagerissupportedfont?language=objc) for the work?
Hello, I’m using glutin make a text input like demo. I try to redraw and invoke `swap_buffers` when event_loop poll `WindowEvent::ReceivedCharacter`, but when i type 'ab', it only shows 'a',...