vim记住上次编辑和浏览位置
·
在用户自己的目录下的.vimrc中添加,
1 "remember last update or view postion" 2 " Only do this part when compiled with support for autocommands 3 if has("autocmd") 4 " In text files, always limit the width of text to 78 characters 5 autocmd BufRead *.txt set tw=78 6 " When editing a file, always jump to the last cursor position 7 autocmd BufReadPost * 8 \ if line("'\"") > 0 && line ("'\"") <= line("$") | 9 \ exe "normal g'\"" | 10 \ endif 11 endif
openvela 操作系统专为 AIoT 领域量身定制,以轻量化、标准兼容、安全性和高度可扩展性为核心特点。openvela 以其卓越的技术优势,已成为众多物联网设备和 AI 硬件的技术首选,涵盖了智能手表、运动手环、智能音箱、耳机、智能家居设备以及机器人等多个领域。
更多推荐


所有评论(0)