Heache Bear
Heache Bear
浏览器明明可以访问raw,但cli下就不行(比如用curl和cmake的file函数)。什么道理0.0.
你这么说我想起来了,我chrome装了ghelper,ghelper好像也会代理到达github的访问,不知道这个代理能不能用于命令行
I have found the reason, there are some file that cannot have permission to open in the directory.
Comment 872th line in `ftplugin/mrakdown.vim` will fix my problem: ```vim autocmd BufWinEnter call s:MarkdownRefreshSyntax(1) ```
Is there any progress? 👀
Is there any way to customize the icons? Because some icons are displayed different in different terminal.
Another question, does atlas always cut glyph off rather than scale it?
Is this feature available?
1. Lualine will detecte the colorscheme by using `g:colors_name` automatically 2. Although I specify the theme manually, it is still different from the screenshot 3. I noticed that the [code...
If an option is optional, We can give it a default value. ```cpp cxxopts::Options o{"", ""}; o.add_options()("a", "", cxxopts::value()->default_value("a")); o.parse_positional({"a"}); std::vector arg = {"a.out"}; o.parse(arg.size(), arg.data()); EXPECT_EQ(o["a"].as(), "a"); ``` To...