├── .gitignore ├── README.md ├── SUMMARY.md ├── _config.yml ├── docs ├── Vim插件.md ├── Vim插件 │ ├── NERDTree目录树.md │ ├── YouCompleteMe自动补齐.md │ └── vundle插件管理工具.md ├── image │ ├── 20190917_195602_92.png │ ├── 20190920_174803_54.png │ └── 20191023_201242_25.png ├── vimrc配置.md ├── 保存退出.md ├── 命令模式.md ├── 命令模式 │ ├── Vim可视化模式.md │ ├── Vim宏录制.md │ ├── Vim重复操作命令.md │ ├── image │ │ ├── 光标移动.gif │ │ ├── 单词级别移动.gif │ │ ├── 缩进操作.gif │ │ └── 重复次数.gif │ ├── 书签.md │ ├── 代码折叠.md │ ├── 位置跳转.md │ ├── 删除.md │ ├── 合并.md │ ├── 块操作.md │ ├── 复制粘贴.md │ ├── 复粘贴制.md │ ├── 插入.md │ ├── 撤销重做.md │ ├── 改写.md │ ├── 替换.md │ ├── 查找.md │ ├── 标签页.md │ ├── 格式化.md │ ├── 移动光标.md │ ├── 窗口分屏.md │ └── 缩进.md ├── 基本模式.md ├── 打开文件.md ├── 末行模式.md ├── 末行模式 │ ├── Quickfix窗口.md │ ├── Vim内部执行shell命令.md │ ├── Vim启动可交互shell.md │ ├── Vim寄存器.md │ ├── normal 命令.md │ ├── 帮助信息.md │ ├── 替换.md │ └── 标准输入输出重定向.md ├── 本仓库写作指南.md ├── 编辑模式.md └── 编辑模式 │ ├── 删除操作.md │ ├── 复制.md │ ├── 寄存器.md │ ├── 移动光标.md │ ├── 自动补全.md │ ├── 调整缩进.md │ └── 输入非常用字符.md ├── image ├── 20190917_192906_38.png ├── 20190917_192921_43.png ├── 20190917_192946_14.png ├── 20190917_193008_29.png └── 20190917_193517_45.png ├── myconfig ├── install-plug.sh ├── release.sh └── vimrc ├── source_code ├── dnvim-code.tgz └── dnvim-code │ └── code │ ├── auto_complete │ ├── bg-colors.css │ ├── omni-setup.vim │ ├── sea-shells.txt │ └── webapp │ │ ├── config.ru │ │ └── public │ │ ├── index.html │ │ └── js │ │ └── application.js │ ├── copy_and_paste │ ├── collection.js │ └── fizz.rb │ ├── ctags │ ├── anglophone.rb │ ├── francophone.rb │ ├── speaker.rb │ ├── tags │ └── tags-abridged │ ├── customizations │ ├── filetype-indentation.vim │ ├── ftplugin │ │ └── javascript.vim │ └── two-space-indent.vim │ ├── essential.vim │ ├── ex_mode │ ├── duplicate.todo │ ├── emails.csv │ ├── foobar.js │ ├── history-scrollers.vim │ ├── loop.js │ ├── practical-vim.html │ └── shopping-list.todo │ ├── files │ ├── .chapters │ ├── a.txt │ ├── b.txt │ ├── letters │ │ ├── a.txt │ │ ├── b.txt │ │ ├── c.txt │ │ ├── d.txt │ │ └── e.txt │ ├── mvc │ │ ├── app.js │ │ ├── app │ │ │ ├── controllers │ │ │ │ ├── Mailer.js │ │ │ │ ├── Main.js │ │ │ │ └── Navigation.js │ │ │ ├── models │ │ │ │ └── User.js │ │ │ └── views │ │ │ │ ├── Home.js │ │ │ │ ├── Main.js │ │ │ │ └── Settings.js │ │ ├── index.html │ │ └── lib │ │ │ ├── framework.js │ │ │ └── theme.css │ └── mvc_paths.vim │ ├── global │ ├── episodes.html │ ├── example.txt │ ├── markdown.js │ └── unsorted.css │ ├── grep │ ├── department-store.txt │ └── goldrush.txt │ ├── insert_mode │ ├── auto-complete-1.tutor │ ├── auto-complete-2.tutor │ ├── auto-complete-3.tutor │ ├── auto-complete.tutor │ ├── back-of-envelope.txt │ ├── practical-vim.txt │ └── replace.txt │ ├── jumps │ ├── practical_vim.rb │ └── practical_vim │ │ ├── core.rb │ │ ├── jumps.rb │ │ ├── more.rb │ │ └── motions.rb │ ├── macros │ ├── broken-lines.txt │ ├── consecutive-lines.txt │ ├── incremental.txt │ ├── mixed-lines.txt │ ├── rc.vim │ └── ruby_module │ │ ├── animal.rb │ │ ├── banker.rb │ │ ├── frog.rb │ │ └── person.rb │ ├── motions │ ├── cursor-maps.vim │ ├── disable-arrowkeys.vim │ ├── parentheses.rb │ ├── search-haiku.txt │ └── template.js │ ├── normal_mode │ ├── sprite.css │ └── the_end.txt │ ├── patterns │ ├── color.css │ ├── dynamic-escape.vim │ ├── escape-problem-characters.vim │ ├── excerpt-also-known-as.txt │ ├── search-url.markdown │ ├── springtime.txt │ ├── urls.txt │ ├── visual-star.vim │ └── windows-paths.markdown │ ├── quickfix │ ├── err-fizz-1 │ ├── err-fizz-2 │ ├── fizzbuzz-errors │ ├── fizzbuzz.js │ ├── format_vimrc │ ├── ftplugin.javascript.vim │ └── wakeup │ │ ├── Makefile │ │ ├── wakeup.c │ │ └── wakeup.h │ ├── search │ ├── escape-register.vim │ ├── headings.md │ ├── langs.txt │ ├── quoted-strings.txt │ └── tag-heirarchy.rb │ ├── spell_check │ ├── moustache.txt │ ├── mustache.txt │ ├── spellfile.vim │ └── yoru-moustache.txt │ ├── substitution │ ├── buttons.js │ ├── fudge.js │ ├── get-rolling.txt │ ├── headings.html │ ├── mixin.js │ ├── qargs.vim │ ├── refactor-project │ │ ├── about.txt │ │ ├── author.txt │ │ ├── extra │ │ │ ├── praise.txt │ │ │ └── titles.txt │ │ └── license.txt │ ├── subscribers.csv │ └── who-bites.txt │ ├── the_vim_way │ ├── 0_mechanics.txt │ ├── 1_copy_content.txt │ ├── 2_foo_bar.js │ └── 3_concat.js │ └── visual_mode │ ├── chapter-table.txt │ ├── fibonacci-malformed.py │ ├── fibonacci.py │ ├── indentation-fix.html │ ├── list-of-links.html │ └── sprite.css └── vimrc.vim /.gitignore: -------------------------------------------------------------------------------- 1 | back 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/README.md -------------------------------------------------------------------------------- /SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/SUMMARY.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/Vim插件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/Vim插件.md -------------------------------------------------------------------------------- /docs/Vim插件/NERDTree目录树.md: -------------------------------------------------------------------------------- 1 | # NERDTree目录树 2 | 3 | -------------------------------------------------------------------------------- /docs/Vim插件/YouCompleteMe自动补齐.md: -------------------------------------------------------------------------------- 1 | # YouCompleteMe自动补齐 2 | 3 | -------------------------------------------------------------------------------- /docs/Vim插件/vundle插件管理工具.md: -------------------------------------------------------------------------------- 1 | # vundle插件管理工具 2 | 3 | -------------------------------------------------------------------------------- /docs/image/20190917_195602_92.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/image/20190917_195602_92.png -------------------------------------------------------------------------------- /docs/image/20190920_174803_54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/image/20190920_174803_54.png -------------------------------------------------------------------------------- /docs/image/20191023_201242_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/image/20191023_201242_25.png -------------------------------------------------------------------------------- /docs/vimrc配置.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/vimrc配置.md -------------------------------------------------------------------------------- /docs/保存退出.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/保存退出.md -------------------------------------------------------------------------------- /docs/命令模式.md: -------------------------------------------------------------------------------- 1 | # 命令模式 2 | 3 | -------------------------------------------------------------------------------- /docs/命令模式/Vim可视化模式.md: -------------------------------------------------------------------------------- 1 | # Vim可视化模式 2 | 3 | -------------------------------------------------------------------------------- /docs/命令模式/Vim宏录制.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/Vim宏录制.md -------------------------------------------------------------------------------- /docs/命令模式/Vim重复操作命令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/Vim重复操作命令.md -------------------------------------------------------------------------------- /docs/命令模式/image/光标移动.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/image/光标移动.gif -------------------------------------------------------------------------------- /docs/命令模式/image/单词级别移动.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/image/单词级别移动.gif -------------------------------------------------------------------------------- /docs/命令模式/image/缩进操作.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/image/缩进操作.gif -------------------------------------------------------------------------------- /docs/命令模式/image/重复次数.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/image/重复次数.gif -------------------------------------------------------------------------------- /docs/命令模式/书签.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/书签.md -------------------------------------------------------------------------------- /docs/命令模式/代码折叠.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/代码折叠.md -------------------------------------------------------------------------------- /docs/命令模式/位置跳转.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/位置跳转.md -------------------------------------------------------------------------------- /docs/命令模式/删除.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/删除.md -------------------------------------------------------------------------------- /docs/命令模式/合并.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/合并.md -------------------------------------------------------------------------------- /docs/命令模式/块操作.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/块操作.md -------------------------------------------------------------------------------- /docs/命令模式/复制粘贴.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/复制粘贴.md -------------------------------------------------------------------------------- /docs/命令模式/复粘贴制.md: -------------------------------------------------------------------------------- 1 | # 复制粘贴 2 | 3 | -------------------------------------------------------------------------------- /docs/命令模式/插入.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/插入.md -------------------------------------------------------------------------------- /docs/命令模式/撤销重做.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/撤销重做.md -------------------------------------------------------------------------------- /docs/命令模式/改写.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/改写.md -------------------------------------------------------------------------------- /docs/命令模式/替换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/替换.md -------------------------------------------------------------------------------- /docs/命令模式/查找.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/查找.md -------------------------------------------------------------------------------- /docs/命令模式/标签页.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/标签页.md -------------------------------------------------------------------------------- /docs/命令模式/格式化.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/格式化.md -------------------------------------------------------------------------------- /docs/命令模式/移动光标.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/移动光标.md -------------------------------------------------------------------------------- /docs/命令模式/窗口分屏.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/窗口分屏.md -------------------------------------------------------------------------------- /docs/命令模式/缩进.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/命令模式/缩进.md -------------------------------------------------------------------------------- /docs/基本模式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/基本模式.md -------------------------------------------------------------------------------- /docs/打开文件.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/打开文件.md -------------------------------------------------------------------------------- /docs/末行模式.md: -------------------------------------------------------------------------------- 1 | # 末行模式 2 | 3 | -------------------------------------------------------------------------------- /docs/末行模式/Quickfix窗口.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/末行模式/Quickfix窗口.md -------------------------------------------------------------------------------- /docs/末行模式/Vim内部执行shell命令.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/末行模式/Vim内部执行shell命令.md -------------------------------------------------------------------------------- /docs/末行模式/Vim启动可交互shell.md: -------------------------------------------------------------------------------- 1 | # Vim启动可交互shell 2 | 3 | -------------------------------------------------------------------------------- /docs/末行模式/Vim寄存器.md: -------------------------------------------------------------------------------- 1 | # Vim寄存器 2 | 3 | -------------------------------------------------------------------------------- /docs/末行模式/normal 命令.md: -------------------------------------------------------------------------------- 1 | # normal 命令 2 | 3 | -------------------------------------------------------------------------------- /docs/末行模式/帮助信息.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/末行模式/帮助信息.md -------------------------------------------------------------------------------- /docs/末行模式/替换.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/末行模式/替换.md -------------------------------------------------------------------------------- /docs/末行模式/标准输入输出重定向.md: -------------------------------------------------------------------------------- 1 | # 标准输入输出重定向 2 | 3 | -------------------------------------------------------------------------------- /docs/本仓库写作指南.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/本仓库写作指南.md -------------------------------------------------------------------------------- /docs/编辑模式.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/docs/编辑模式.md -------------------------------------------------------------------------------- /docs/编辑模式/删除操作.md: -------------------------------------------------------------------------------- 1 | # 删除操作 2 | 3 | -------------------------------------------------------------------------------- /docs/编辑模式/复制.md: -------------------------------------------------------------------------------- 1 | # 复制 2 | 3 | -------------------------------------------------------------------------------- /docs/编辑模式/寄存器.md: -------------------------------------------------------------------------------- 1 | # 寄存器 2 | 3 | -------------------------------------------------------------------------------- /docs/编辑模式/移动光标.md: -------------------------------------------------------------------------------- 1 | # 移动光标 2 | 3 | -------------------------------------------------------------------------------- /docs/编辑模式/自动补全.md: -------------------------------------------------------------------------------- 1 | # 自动补全 2 | 3 | -------------------------------------------------------------------------------- /docs/编辑模式/调整缩进.md: -------------------------------------------------------------------------------- 1 | # 调整缩进 2 | 3 | -------------------------------------------------------------------------------- /docs/编辑模式/输入非常用字符.md: -------------------------------------------------------------------------------- 1 | # 输入非常用字符 2 | 3 | -------------------------------------------------------------------------------- /image/20190917_192906_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/image/20190917_192906_38.png -------------------------------------------------------------------------------- /image/20190917_192921_43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/image/20190917_192921_43.png -------------------------------------------------------------------------------- /image/20190917_192946_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/image/20190917_192946_14.png -------------------------------------------------------------------------------- /image/20190917_193008_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/image/20190917_193008_29.png -------------------------------------------------------------------------------- /image/20190917_193517_45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/image/20190917_193517_45.png -------------------------------------------------------------------------------- /myconfig/install-plug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/myconfig/install-plug.sh -------------------------------------------------------------------------------- /myconfig/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/myconfig/release.sh -------------------------------------------------------------------------------- /myconfig/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/myconfig/vimrc -------------------------------------------------------------------------------- /source_code/dnvim-code.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code.tgz -------------------------------------------------------------------------------- /source_code/dnvim-code/code/auto_complete/bg-colors.css: -------------------------------------------------------------------------------- 1 | .top { 2 | background-color: #ef66ef; } 3 | .bottom { 4 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/auto_complete/omni-setup.vim: -------------------------------------------------------------------------------- 1 | set nocompatible 2 | filetype plugin on 3 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/auto_complete/sea-shells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/auto_complete/sea-shells.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/auto_complete/webapp/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/auto_complete/webapp/config.ru -------------------------------------------------------------------------------- /source_code/dnvim-code/code/auto_complete/webapp/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/auto_complete/webapp/public/index.html -------------------------------------------------------------------------------- /source_code/dnvim-code/code/auto_complete/webapp/public/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/auto_complete/webapp/public/js/application.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/copy_and_paste/collection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/copy_and_paste/collection.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/copy_and_paste/fizz.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/copy_and_paste/fizz.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ctags/anglophone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ctags/anglophone.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ctags/francophone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ctags/francophone.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ctags/speaker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ctags/speaker.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ctags/tags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ctags/tags -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ctags/tags-abridged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ctags/tags-abridged -------------------------------------------------------------------------------- /source_code/dnvim-code/code/customizations/filetype-indentation.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/customizations/filetype-indentation.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/customizations/ftplugin/javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/customizations/ftplugin/javascript.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/customizations/two-space-indent.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/customizations/two-space-indent.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/essential.vim: -------------------------------------------------------------------------------- 1 | set nocompatible 2 | filetype plugin on 3 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ex_mode/duplicate.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ex_mode/duplicate.todo -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ex_mode/emails.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ex_mode/emails.csv -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ex_mode/foobar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ex_mode/foobar.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ex_mode/history-scrollers.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ex_mode/history-scrollers.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ex_mode/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ex_mode/loop.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ex_mode/practical-vim.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ex_mode/practical-vim.html -------------------------------------------------------------------------------- /source_code/dnvim-code/code/ex_mode/shopping-list.todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/ex_mode/shopping-list.todo -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/.chapters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/.chapters -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/a.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/b.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/letters/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/letters/a.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/letters/b.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/letters/b.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/letters/c.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/letters/c.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/letters/d.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/letters/d.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/letters/e.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/letters/e.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/app.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/app/controllers/Mailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/app/controllers/Mailer.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/app/controllers/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/app/controllers/Main.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/app/controllers/Navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/app/controllers/Navigation.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/app/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/app/models/User.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/app/views/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/app/views/Home.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/app/views/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/app/views/Main.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/app/views/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/app/views/Settings.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/index.html -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/lib/framework.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc/lib/framework.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc/lib/theme.css: -------------------------------------------------------------------------------- 1 | /* lib/theme.css */ 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/files/mvc_paths.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/files/mvc_paths.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/global/episodes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/global/episodes.html -------------------------------------------------------------------------------- /source_code/dnvim-code/code/global/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/global/example.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/global/markdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/global/markdown.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/global/unsorted.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/global/unsorted.css -------------------------------------------------------------------------------- /source_code/dnvim-code/code/grep/department-store.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/grep/department-store.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/grep/goldrush.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/grep/goldrush.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/insert_mode/auto-complete-1.tutor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/insert_mode/auto-complete-1.tutor -------------------------------------------------------------------------------- /source_code/dnvim-code/code/insert_mode/auto-complete-2.tutor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/insert_mode/auto-complete-2.tutor -------------------------------------------------------------------------------- /source_code/dnvim-code/code/insert_mode/auto-complete-3.tutor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/insert_mode/auto-complete-3.tutor -------------------------------------------------------------------------------- /source_code/dnvim-code/code/insert_mode/auto-complete.tutor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/insert_mode/auto-complete.tutor -------------------------------------------------------------------------------- /source_code/dnvim-code/code/insert_mode/back-of-envelope.txt: -------------------------------------------------------------------------------- 1 | 6 chairs, each costing $35, totals $ 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/insert_mode/practical-vim.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/insert_mode/practical-vim.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/insert_mode/replace.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/insert_mode/replace.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/jumps/practical_vim.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/jumps/practical_vim.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/jumps/practical_vim/core.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/jumps/practical_vim/core.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/jumps/practical_vim/jumps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/jumps/practical_vim/jumps.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/jumps/practical_vim/more.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/jumps/practical_vim/more.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/jumps/practical_vim/motions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/jumps/practical_vim/motions.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/macros/broken-lines.txt: -------------------------------------------------------------------------------- 1 | 1. one 2 | 2. two 3 | // break up the monotony 4 | 3. three 5 | 4. four 6 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/macros/consecutive-lines.txt: -------------------------------------------------------------------------------- 1 | 1. one 2 | 2. two 3 | 3. three 4 | 4. four 5 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/macros/incremental.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/macros/incremental.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/macros/mixed-lines.txt: -------------------------------------------------------------------------------- 1 | 1. One 2 | 2. Two 3 | 3. three 4 | 4. four 5 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/macros/rc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/macros/rc.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/macros/ruby_module/animal.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/macros/ruby_module/animal.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/macros/ruby_module/banker.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/macros/ruby_module/banker.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/macros/ruby_module/frog.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/macros/ruby_module/frog.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/macros/ruby_module/person.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/macros/ruby_module/person.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/motions/cursor-maps.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/motions/cursor-maps.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/motions/disable-arrowkeys.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/motions/disable-arrowkeys.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/motions/parentheses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/motions/parentheses.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/motions/search-haiku.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/motions/search-haiku.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/motions/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/motions/template.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/normal_mode/sprite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/normal_mode/sprite.css -------------------------------------------------------------------------------- /source_code/dnvim-code/code/normal_mode/the_end.txt: -------------------------------------------------------------------------------- 1 | The end is nigh 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/patterns/color.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/patterns/color.css -------------------------------------------------------------------------------- /source_code/dnvim-code/code/patterns/dynamic-escape.vim: -------------------------------------------------------------------------------- 1 | escape(@u, getcmdtype()) 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/patterns/escape-problem-characters.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/patterns/escape-problem-characters.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/patterns/excerpt-also-known-as.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/patterns/excerpt-also-known-as.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/patterns/search-url.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/patterns/search-url.markdown -------------------------------------------------------------------------------- /source_code/dnvim-code/code/patterns/springtime.txt: -------------------------------------------------------------------------------- 1 | I love Paris in the 2 | the springtime. 3 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/patterns/urls.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/patterns/urls.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/patterns/visual-star.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/patterns/visual-star.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/patterns/windows-paths.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/patterns/windows-paths.markdown -------------------------------------------------------------------------------- /source_code/dnvim-code/code/quickfix/err-fizz-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/quickfix/err-fizz-1 -------------------------------------------------------------------------------- /source_code/dnvim-code/code/quickfix/err-fizz-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/quickfix/err-fizz-2 -------------------------------------------------------------------------------- /source_code/dnvim-code/code/quickfix/fizzbuzz-errors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/quickfix/fizzbuzz-errors -------------------------------------------------------------------------------- /source_code/dnvim-code/code/quickfix/fizzbuzz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/quickfix/fizzbuzz.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/quickfix/format_vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/quickfix/format_vimrc -------------------------------------------------------------------------------- /source_code/dnvim-code/code/quickfix/ftplugin.javascript.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/quickfix/ftplugin.javascript.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/quickfix/wakeup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/quickfix/wakeup/Makefile -------------------------------------------------------------------------------- /source_code/dnvim-code/code/quickfix/wakeup/wakeup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/quickfix/wakeup/wakeup.c -------------------------------------------------------------------------------- /source_code/dnvim-code/code/quickfix/wakeup/wakeup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/quickfix/wakeup/wakeup.h -------------------------------------------------------------------------------- /source_code/dnvim-code/code/search/escape-register.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/search/escape-register.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/search/headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/search/headings.md -------------------------------------------------------------------------------- /source_code/dnvim-code/code/search/langs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/search/langs.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/search/quoted-strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/search/quoted-strings.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/search/tag-heirarchy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/search/tag-heirarchy.rb -------------------------------------------------------------------------------- /source_code/dnvim-code/code/spell_check/moustache.txt: -------------------------------------------------------------------------------- 1 | Your mum has a moustache. 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/spell_check/mustache.txt: -------------------------------------------------------------------------------- 1 | Your mom has a mustache. 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/spell_check/spellfile.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/spell_check/spellfile.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/spell_check/yoru-moustache.txt: -------------------------------------------------------------------------------- 1 | Yoru mum has a moustache. 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/substitution/buttons.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/fudge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/substitution/fudge.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/get-rolling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/substitution/get-rolling.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/headings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/substitution/headings.html -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/substitution/mixin.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/qargs.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/substitution/qargs.vim -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/refactor-project/about.txt: -------------------------------------------------------------------------------- 1 | Pragmatic Vim is a hands on guide to working with Vim. 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/refactor-project/author.txt: -------------------------------------------------------------------------------- 1 | Pragmatic Vim is written by Drew Neil. 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/refactor-project/extra/praise.txt: -------------------------------------------------------------------------------- 1 | What people are saying about Pragmatic Vim... 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/refactor-project/extra/titles.txt: -------------------------------------------------------------------------------- 1 | Other titles from the Pragmatic Bookshelf... 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/refactor-project/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/substitution/refactor-project/license.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/subscribers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/substitution/subscribers.csv -------------------------------------------------------------------------------- /source_code/dnvim-code/code/substitution/who-bites.txt: -------------------------------------------------------------------------------- 1 | The dog bit the man. 2 | -------------------------------------------------------------------------------- /source_code/dnvim-code/code/the_vim_way/0_mechanics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/the_vim_way/0_mechanics.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/the_vim_way/1_copy_content.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/the_vim_way/1_copy_content.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/the_vim_way/2_foo_bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/the_vim_way/2_foo_bar.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/the_vim_way/3_concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/the_vim_way/3_concat.js -------------------------------------------------------------------------------- /source_code/dnvim-code/code/visual_mode/chapter-table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/visual_mode/chapter-table.txt -------------------------------------------------------------------------------- /source_code/dnvim-code/code/visual_mode/fibonacci-malformed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/visual_mode/fibonacci-malformed.py -------------------------------------------------------------------------------- /source_code/dnvim-code/code/visual_mode/fibonacci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/visual_mode/fibonacci.py -------------------------------------------------------------------------------- /source_code/dnvim-code/code/visual_mode/indentation-fix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/visual_mode/indentation-fix.html -------------------------------------------------------------------------------- /source_code/dnvim-code/code/visual_mode/list-of-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/visual_mode/list-of-links.html -------------------------------------------------------------------------------- /source_code/dnvim-code/code/visual_mode/sprite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/source_code/dnvim-code/code/visual_mode/sprite.css -------------------------------------------------------------------------------- /vimrc.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yifengyou/learn-vim/HEAD/vimrc.vim --------------------------------------------------------------------------------