Fujiwara Takuya
Fujiwara Takuya
Type "rotate" mapping to change comment type quickly. # Example In filetype=c, "rotate" mapping rotates the following comment types (including no comment string?) ## oneline ``` c // comment ```...
Support multiline comment, like javadoc and C. ``` java /** * @param i1 * @param i2 * @return i1 + i2 */ public static int add(int i1, int i2) {...
Toggle a position of comment string in previous line, next line, after current line. After current line: ``` hello " :-) ``` Previous line: ``` " :-) hello ``` Next...
別リポジトリに登録するのがいいかも。 そこまでやる気力があるかどうか。 やる意義があるかどうか。
https://github.com/Shougo/context_filetype.vim
use tags info if it exists because it is hard to parse source code by vim script.
When walking buffer where `cfi#get_func_name()` returns empty string, and editing huge source code (like src/eval.c in Vim's source code), it little bit takes a time to move cursor. To solve...
Sorry, almost implementation were rewritten. However, I thought I should send a pull request because I hope this saves existing vim-textobj-underscore users too :) Supported 3 extra cases. - `a_`...
It would appreciate that vint warns unreachable code at `echomsg` of below code. ```vim function! s:func() abort return 42 echomsg 'unreachable!' endfunction ```