Skip to content

Commit

Permalink
设置鼠标滚动
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Mar 24, 2019
1 parent 9f96a06 commit 5595184
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ set hlsearch " 高亮显示搜索结果
" 在处理未保存或只读文件的时候,弹出确认
set confirm

set mouse=a " 设置鼠标滚动

" 缩进
set expandtab " 将制表符扩展为空格
set tabstop=2 " 设置编辑时制表符占用空格数
Expand Down Expand Up @@ -111,4 +113,20 @@ let g:ctrlp_custom_ignore = {
\ 'file': '\v\.(exe|so|dll)$',
\ 'link': 'some_bad_symbolic_links',
\ }
" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<


" >>>=========插件 Xuyuanp/nerdtree-git-plugin 配置============
let g:NERDTreeIndicatorMapCustom = {
\ "Modified" : "",
\ "Staged" : "",
\ "Untracked" : "",
\ "Renamed" : "",
\ "Unmerged" : "",
\ "Deleted" : "",
\ "Dirty" : "",
\ "Clean" : "✔︎",
\ 'Ignored' : '',
\ "Unknown" : "?"
\ }
" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<
39 changes: 38 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ u # 选中 - 变小写
<ctrl+p> # 启动搜索文件
;tt # 开启/关闭代码导航
;fl # 开启/关闭目录菜单
:!which ls # 找命令不推出vim运行命令
```

**整页翻页**
Expand All @@ -82,6 +83,42 @@ ZZ # → 快捷键,保存修改并推出
:wq! # → 保存修改并推出(文件所有者,root权限的用户)
```

**文本编辑搜索等操作**

```bash
xp # 左右交换光标处两字符的位置
:200,320 join # 合并第200~320行
J # 选中多行合并

:r ~/git/R.js # 将文件内容导入到该文件中
:r !date # 将当前编辑时间导入当前文本光标所在行
:!date # 查看编辑时间

;sp # 选中搜索 - 文本中选中关键字
# normal模式下 选中搜索 - 文本中选中关键字
;sl # 选中搜索 - 结果列表

;y # 复制到剪切板
y # 复制
yy # 复制当前行
nyy # n表示大于1的数字,复制n行
yw # 从光标处复制至一个单子/单词的末尾,包括空格
ye # 从光标处复制至一个单子/单词的末尾,不包括空格
y$ # 从当前光标复制到行末
y0 # 从当前光标位置(不包括光标位置)复制之行首
y3l # 从光标位置(包括光标位置)向右复制3个字符
y5G # 将当前行(包括当前行)至第5行(不包括它)复制
y3B # 从当前光标位置(不包括光标位置)反向复制3个单词
. # 粘贴
p # 粘贴

# 多光标编辑
Shift+n # 选中下一个相同字符
Shift+k # 跳过当前选中的字符

:1,24s/header/www/g # 第1到24行将header替换成www
```

**刷新重载打开的文件**

```bash
Expand All @@ -91,7 +128,7 @@ ZZ # → 快捷键,保存修改并推出

**简单排版**

```bash
```vimscript
:ce(nter) # 居中显示光标所在行
:ri(ght) # 靠右显示光标所在行
:le(ft) # 靠左显示光标所在行
Expand Down

0 comments on commit 5595184

Please sign in to comment.