Lai Shulu

Results 46 comments of Lai Shulu

the output of `:echo g:pencil#conceallevel` is 0

I init pencil by `autocmd FileType markdown,mkd call pencil#init()` If I run `:Pencil`, then conceal works as expected. It's confusing, because the state after `init` is called while `:Pencil` is...

``` :echo &filetype markdown :echo has('conceal') 1 :echo v:version 704 echo &conceallevel 2 ```

after I manually run `:call pencil#init()` when `a.md` is already open, all is OK. `**word**` show as `**word**` instead of `word`. I don't know why. Without manually run the command,...

I am just curious why you have such an intention of design to hide characters like `**`, In my opinion, as an **TEXT** editor, any character input should be shown...

If pencil is comment out completely from my `.vimrc`, I get the same result on `&conceallevel`. ``` echo &conceallevel 2 ``` I just type `**a**` in a file named `a.md`.

In my side, whether or not I enable pencil and related settings, I always get ``` echo &conceallevel 2 ``` and If I enable pencil and related settings, I get:...

I also see this problem ``` NeoBundle 'reedes/vim-pencil' let g:pencil#wrapModeDefault = 'soft' " default is 'hard' augroup pencil autocmd! autocmd FileType markdown,mkd call pencil#init() autocmd FileType text call pencil#init({'wrap': 'hard'})...

我最早就是用你的现在的命令行参数的,后来发现有问题,才改成现在这个样子。 有空我再确认一下,也许现在没问题了。

也有人报同样的问题: https://github.com/ryanoasis/nerd-fonts/issues/576