#1BhpWFTo 看了這篇的建議後
自己寫了 text 的顏色設定
然後現在有個讀取的問題
/opt/test/test.txt //文字檔
/opt/test/hl.vim //顏色檔
每次開檔後
:e /mnt/test/test.txt
:source /mnt/test/hl.vim
試過用 expand() 能正確展開
echo substitute(expand('%'), expand('%:t'), 'hl.vim', 'g')
但就寫成熱鍵 就一直跳錯誤
因為那目錄會掛在不同的 linux 和 windows
所以不能寫成固定的路徑名稱
想請問有沒有什麼方法可以弄成熱鍵
感謝回答
nnoremap <F3> :let g:highlightfilepath=substitute(expand('%'), expand('%:t'), 'highlight.vim', 'g')<CR>:execute 'source ' g:highlightfilepath<CR>
結果弄好了 不知道昨天腦袋在打結啥鬼