Below you will find pages that utilize the taxonomy term “neovim”
Posts
nathanaelkane/vim-indent-guides を改良したneovim-indent-guidesを作った
nathanaelkane/vim-indent-guidesを改良して、空行にもガイドが表示されるようにした。neovimのvirtual
Posts
neovim/tmuxのクリップボード連携(OSC 52)
TL;DR let s:osc52_copy = {lines, regtype ->\ chansend(v:stderr, printf("\x1b]52;;%s\x1b\\", system("base64", join(lines, "\n"))))}let s:osc52_paste = {-> getreg('"', 1, 1)} " fallbackif !exists('$TMUX') let g:clipboard = {\ 'name': 'osc52',\ 'copy': {\ '+': s:osc52_copy,\ '*': s:osc52_copy,\ },\ 'paste': {\ '+': s:osc52_paste,\ '*': s:osc52_paste,\ },\ 'cache_enabled': 1,\ }endifset -g set-clipboard on OSC 52制御文字列とは CLIアプリとクリップボー