vimrc読書会サポート bot です
!reading_vimrc {command} [{args}...]
start : 会の開始、"member" は "reset" される(owner)
stop : 会の終了(owner)
reset : "member" をリセット(owner)
restore : "member" を1つ前に戻す(owner)
status : ステータスの出力
member : "start" ~ "stop" の間に発言した人を列挙
member_with_count : "member" に発言数も追加して列挙
next {url}... : 次回分更新(owner)
request[!] {url}... : 読みたい vimrc をリクエストページに追加
help : 使い方を出力
1 | """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
2 | " _____ .__ .__
3 | " / \ |__| ___ _|__| ____________ ____
4 | " / \ / \| | \ \/ / |/ \_ __ \_/ ___\
5 | " / Y \ | \ /| | Y Y \ | \/\ \___
6 | " \____|____/__| \_/ |__|__|_|__/__| \_____>
7 | " ________ _________________ .__ __
8 | " / _____/ / _____/\_ ___ \_______|__| _______/ |_ ____
9 | " / \ ___/ \ ___/ \ \/\_ __ \ |/ ___/\ __\/ _ \
10 | " \ \_\ \ \_\ \ \____| | \/ |\___ \ | | ( <_> )
11 | " \________/\________/\________/|__| |__/______> |__| \____/
12 | """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
41 | set spelllang=es,en_us
42 | set dictionary+=/usr/share/dict/words,/usr/share/dict/spanish
71 | " pseudo-text object
72 | " https://gist.github.com/romainl/c0a8b57a36aec71a986f1120e1931f20
73 | " https://www.reddit.com/r/vim/comments/i8prmn/vifm_as_a_nerdtree_alternative_my_in_progress/
74 | for char in [ '_', '.', ':', ',', ';', '<bar>', '/', '<bslash>', '*', '+', '%', '-', '#' ]
75 | execute 'xnoremap i' . char . ' :<C-u>normal! T' . char . 'vt' . char . '<CR>'
76 | execute 'onoremap i' . char . ' :normal vi' . char . '<CR>'
77 | execute 'xnoremap a' . char . ' :<C-u>normal! F' . char . 'vf' . char . '<CR>'
78 | execute 'onoremap a' . char . ' :normal va' . char . '<CR>'
79 | endfor