JohanChane

Results 9 issues of JohanChane

Execute `:Vista finder coc ` and the symbol has been input to the preview windows. So I can define a map like this. ```vim noremap vf :Vista finder coc ```

I enable Caps Lock when my current input method is english, then i switch to rime. The rime icon should be 'A' instead of the other.

Filetype for c++ is 'cpp' in vim, however `--language-force` for c++ is `c++` in ctags. For example, when i reviewed the STL source code, i set the filetype of `string`...

for example ```cpp xml_attribute *m_next_attribute; // Pointer to next sibling of attribute, or 0 if none; only valid if parent is non-zero ``` When the cursor on the `m_next_attribute` yield...

https://github.com/is0n/fm-nvim/issues/30

I am configuring my neovim to be transparent, however SignColumn isn't transparent when i use vim-dues. So I do this. ```vim " make SignColumn transparent let g:deus_sign_column = 'none' ```

Sometime I need to traverse section, key and value of the section. I didn't find the function from the example usage, so I read the source and found it. So...

![image](https://github.com/JohanChane/clash-auto/assets/26107760/a1559a06-7444-498e-a8be-f86bcd25b8a0)

### Introduce the problem use `lv_tick_inc` in another thread: ```cpp main { thread { while (1) { lv_tick_inc(5); usleep(5000); } } while(1) { uint32_t time_till_next = lv_timer_handler(); my_delay_ms(time_till_next); } }...