jdhao

Results 188 comments of jdhao

Same issue here on macOS, using packer to install markdown-preview.nvim: ``` use({ "iamcco/markdown-preview.nvim", run = function() vim.fn["mkdp#util#install"]() end, }) ``` After using `:MarkdownPreview`, nothing shows. I manually run `:call mkdp#util#install()`,...

@FeiChaoyu 用的是不是最新的 Hugo 版本?Hugo 0.6 以后,默认从 level 2 的 heading 开始渲染,参见 [这里](https://jdhao.github.io/2020/01/19/hugo_toc_header_missing/),可以在 config.toml 文件加上以下设置,更改默认行为: ``` [markup] [markup.tableOfContents] endLevel = 4 startLevel = 1 ```

This issue is similar to #272 and #435, though I set both the two plugins as opt plugins. It seems that I need to put vim-airline-themes before vim-airline. The following...

@akinsho Removing `VimEnter` for vim-airline also seems to work as expected, i.e., the following works: ``` lua

[This PR](https://github.com/myshov/xkbswitch-macosx/pull/14) works for me.

It would be great to provide instructions on building. I can not install from appstore, since it is disabled in my mac.

On windows, in order to auto-complete, for the `import` command, I have type import and then type at least the initial character of the package, then if I press TAB,...

Yes, the settings are the same. In the `sublime_jedi.sublime-settings` file, I use the following options: ``` { "auto_complete_function_params": "", "logging_level": "info", "sublime_completions_visibility": "default" } ``` In the sublime preference settings,...

In order to better illustrate the idea. I have made two images + Windows behaviour ![windows_behavior](https://user-images.githubusercontent.com/16662357/39711965-fac16a26-5253-11e8-8fc5-f0e560f178de.gif) + Linux behaviour ![linux_behavior](https://user-images.githubusercontent.com/16662357/39712022-21a2efd4-5254-11e8-8e08-9821aed87bfe.gif) From the two image, we can see that on Windows,...

okay, I will create a pr for this, this should be trivial to implement.