惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

jdhao's digital space

Conversion between base64 and OpenCV or PIL Image 腾讯云对象存储博客图床开启 CDN 加速(不需要购买额外域名) Search and Replace in Multiple Files in Vim/Neovim Change Table Column Width in LaTeX Image or Table Side by Side in LaTeX LaTeX 并排显示图像或表格 Firenvim: Neovim inside Your Browser Content inside HTML tags missing in Latest Hugo? Creating Markdown Front Matter with Ultisnips Labelme JSON 标注格式转 voc XML 格式 Nifty Nvim Techniques That Make My Life Easier -- Series 6 macOS 下如何为视频制作字幕 Running Command Asynchronously inside Neovim Resolving Merge Conflict after Git Stash Pop Pylint: command not found? A Hands-on Experience with Neovim's Built-in LSP Support How to Convert PDF to Images with Imagemagick 互联网上常用缩略语集锦 File Backup in Neovim Converting PDF Pages to Images with Poppler Nifty Nvim Techniques That Make My Life Easier -- Series 5 Neovim Configuration for System-wide Use How to sort a list of tuple or list in Python -- lambda or itemgetter? Building A Vim Statusline from Scratch 人类第一颗原子弹爆炸始末 Distributed Training in PyTorch with Horovod Learning Expect Programming Essential Knowledge about SSH Nifty LaTeX Techniques -- Series 1 更改 Adsense 邮寄地址,重新寄送 PIN
Nifty Little Nvim Techniques to Make My Life Easier -- Se...
2019-03-28 · via jdhao's digital space

This is the 1st post of a series posts on nifty techniques that make my editing experience in Neovim smoother.

Click here to check other posts in this series.

How do we select the current line, but not including the newline character?#

In Neovim, if we want to select from the current cursor position to the end of the line, we usually use v$. However, the annoyance is that newline character is also selected. We have to press h to move the cursor one character left.

How do we select only to the last character of the line? Fortunately, we can use g_ to do that. According to the documentation:

g_          To the last non-blank character of the line and
            [count - 1] lines downward |inclusive|.

To select from the cursor position to the last character of this line, we can use vg_.

There is also a selection option in Neovim that controls how the selection behaves. If we use set selection=exclusive, then the last character will not be included when we use $.

Another way is to remap $ in visual mode. Add the following settings to your config:

References

Case-changing operators#

Neovim provides several shortcuts to change character cases quickly. All the following operations should be followed by motions (e.g., $, w, e etc.) or text objects:

  • g~: switch the case of character
  • gu: change characters to lower case
  • gU: change characters to upper case

Add character pair to text objects#

Sometimes, we want to add a pair of characters to existing text objects. The ys operator provided by vim-surround is used for that purpose. To use it, the format is

Suppose we have the following texts, and we want to surround the word welcome with a pair of square bracket ([])

# | indicate cursor position
"wel|come to a new world"

Our key strokes should be ysiw]1

The above text now becomes:

"[welcome] to a new world"

If you want to surround "welcome to a new world" with (), you can use ysi")2

How do I check the help doc for a keyword under the cursor?#

When we are browsing the help file, we may want to check the doc for a keyword quickly. For example, when the cursor is in the keyword clipboard (keywords in the help files are colored as opposed to the regular text), how do we check its documentation immediately?

It is very simple: just press K, and you will go the documentation of the keyword. You can also press Ctrl+] to go to the documentation.

If you have enabled mouse support in nvim (set mouse=a), you can also double click the keyword to open its documentation. If you are using mintty terminal, clicking the keyword while you are pressing Ctrl will also work.

By the way, to go back to previous position in the help file, press Ctrl+O or Ctrl+T.

References

Setting up textwidth in Nvim#

For text files such as Markdown, LaTeX, we may want to restrict the line length to 80 characters at most for better readability. To set line length of the file, we should use textwidth option:

Maximum width of text that is being inserted. A longer line will be broken after white space to get this width. A zero value disables this

Add the following setting to your init.vim should work:

augroup my_textwidth
au!
autocmd FileType text,markdown,tex setlocal textwidth=80
augroup END

If we open an existing file, we will find that the file content isn’t changed automatically. It turns out that we have to manually format the existing texts. We can use gggqG to format the entire document. When you type new text, it will be correctly splitted to next line at textwidth.

References

How to show the full path of current file?#

You can use {count}Ctrl-G to show the full path of current buffer:

{count}CTRL-G           Like CTRL-G, but prints the current file name with
                        full path. If the count is higher than 1, the current
                        buffer number is also given.

To show only the full path of file, press 1 followed by Ctrl-G. To also show its buffer number, use a count higher than 1, e.g., 2<C-G>.

References