Chaoses-Ib
Chaoses-Ib
For people with the same problem: This is the same issue as #115. `__warpped__` property is still not implemented in wrapt. [PEAK-Legacy/ProxyTypes](https://github.com/PEAK-Legacy/ProxyTypes) can be used as an alternative.
`di::make_injector(di::bind().in(di::extension::shared))` has the same result.
After a year, I found a solution: change ```cpp class Class1 { di::injector injector; public: Class1() : injector(di::make_injector()); }; ``` to ```cpp class Class1 { di::core::injector injector; public: Class1() :...
`http://www.apache.org/dist/hbase/$HBASE_VERSION/hbase-$HBASE_VERSION-bin.tar.gz` (e.g. http://www.apache.org/dist/hbase/2.2.5/hbase-2.2.5-bin.tar.gz) is no longer accessible and shoule be replaced by `http://archive.apache.org/dist/hbase/$HBASE_VERSION/hbase-$HBASE_VERSION-bin.tar.gz`.
已更新 [v0.6-alpha.4](https://github.com/Chaoses-Ib/IbEverythingExt/releases/tag/v0.6-alpha.4),支持 v1.4.1.1018 和特征码匹配。
最近经济有点困难,要过段时间才能实现了。你可以先用 Tab 或者 Enter 来选择,比鼠标和上下键方便些。
Todo: - [ ] 编辑框热键 - [ ] Up, Down - [ ] Page Up, Page Down - [ ] Enter, Ctrl+Enter, Shift+Enter, Alt+Enter - [ ] Shift+F10 - [...
Same problem on Win10 20H2 with .NET 5, VS 2019. And adding [STAThread] doesn't help.
未在该 issue 中列出的页面均为无许可转载,作者不对其中内容的安全性负责,也不会处理其中的反馈,如有问题或建议请在仓库 Issues 或以上列出的页面中进行反馈。
临时解决方案:使用 AutoHotkey 映射: [quickselect_keymap.zip](https://github.com/Chaoses-Ib/IbEverythingExt/files/8471757/quickselect_keymap.zip) ```ahk #UseHook SendMode "Input" #HotIf ActiveWindowIsEverything() and ActiveControlIsOfClass("Edit") ^1::!1 ^2::!2 ^3::!3 ^4::!4 ^5::!5 ^6::!6 ^7::!7 ^8::!8 ^9::!9 ^0::!0 #HotIf ActiveWindowIsEverything() { window_class := "" try window_class...