Edit 2024-12-18:
Support for mouse emulation has now been implemented. See https://zmk.dev/docs/keymaps/behaviors/mouse-emulation
The instructions below are outdated.
ru: | |
date: | |
abbr_day_names: | |
- Вс | |
- Пн | |
- Вт | |
- Ср | |
- Чт | |
- Пт | |
- Сб |
# Сначала оказалось, что лежал сайт (в конце ответа лежит решение позволяющее обойти и эту проблему), | |
# проверяем https://packagecontrol.io/channel_v3.json, но и после возобновления проблема не ушла. | |
# Добавляем в настройки плагинов для пользователя (Preferences > Package Settings > Package Control > Settings - User) каналы: | |
"channels": | |
[ | |
"https://packagecontrol.io/channel_v3.json", | |
"https://web.archive.org/web/20160103232808/https://packagecontrol.io/channel_v3.json", | |
"https://gist.githubusercontent.com/nick1m/660ed046a096dae0b0ab/raw/e6e9e23a0bb48b44537f61025fbc359f8d586eb4/channel_v3.json" |
Edit 2024-12-18:
Support for mouse emulation has now been implemented. See https://zmk.dev/docs/keymaps/behaviors/mouse-emulation
The instructions below are outdated.
// Types for the result object with discriminated union | |
type Success<T> = { | |
data: T; | |
error: null; | |
}; | |
type Failure<E> = { | |
data: null; | |
error: E; | |
}; |