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

推荐订阅源

U
Unit 42
A
About on SuperTechFans
J
Java Code Geeks
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
GbyAI
GbyAI
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
MongoDB | Blog
MongoDB | Blog
MyScale Blog
MyScale Blog
aimingoo的专栏
aimingoo的专栏
H
Help Net Security
月光博客
月光博客
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
The Cloudflare Blog
WordPress大学
WordPress大学
S
SegmentFault 最新的问题
T
Tailwind CSS Blog
Jina AI
Jina AI
有赞技术团队
有赞技术团队
博客园_首页

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-04-17 · via jdhao's digital space

This is the 2nd post of my post series on nifty Nvim/Vim techniques that will make my editing experience easier.

Click here to check other posts in this series.

How to add a newline after some pattern?#

In other styles of regular expressions, \n is used to denote a newline character. In nvim, it is a bit complicated. In search, you can use \n to search a newline. But in replace, you need to use \r to insert a newline. \n in replace mode will insert NULL character (shown as \@) in nvim.

References

How to output the value of a nvim option or variable to current buffer?#

For a variable, to output its value to the buffer. You have two options:

  1. Use :put= followed by variable name in NORMAL mode. For example, if you want to put the value of airline_theme to current buffer, use :put=airline_theme.
  2. Use <C-R>= in INSERT mode. In INSERT mode, first press Ctrl+R, then press =, input a variable name, e.g., airline_theme.

For a Nvim option, the operation is similar except that you need to add a & before option. For example, to put the value timeoutlen into current buffer, you can either use :put=&timeoutlen<CR> or use <C-R>=&timeoutlen<CR>.

References

How do I set multiple options in one autocmd?#

Based on some event or the filetypes, we may want to set up several options at once. How do we do it in Vim?

For example, when we open a terminal inside Nvim, reset the number and relativenumber settings, we can use the following command:

autocmd TermOpen * setlocal nonumber norelativenumber

References

How do I open a terminal window inside neovim?#

For neovim, to open a vertical terminal window, the following works:

:vnew term://bash :vsplit term://bash :vnew term://zsh :vsplit term://zsh

To open a horizontal window, remote v in the above command. More documentation can be found by using :h :terminal inside neovim.

References

How do I use all kinds of shortcut in vim command mode?#

When we enter the vim command mode by using :, we can not use the many shortcut provided by vim (we are in INSERT MODE in some sense), which makes command editing inefficient. Vim also provides a more powerful command window, which you can open by either press <C-F> in command mode or press q: in NORMAL mode window.

In the command mode, a list of history command is shown. To execute a specific command, move the cursor to that line and press <CR> in NORMAL mode. The command will be executed as if from the window where the command window is started. To edit a command, move to the line and start editing using all the shortcut provided by Vim.

By default, you will be in NORMAL mode when you open the command window. To open the command window and start inserting command automatically, we will employ the CmdwinEnter event provided by Vim:

autocmd CmdwinEnter [:] startinsert

How to quit command window#

  • :quit
  • Press <C-c>

References

How do I create folds in vim configuration?#

For long Vim configuration files, it is hard to grasp the structure of the whole file and to navigate the file. Thus it is desirable to create fold for each section of the vim configuration.

To achieve this, we can employ the modeline to set the fold-related options for Vim config file only.

First, add the following line to the first or last line of your Vim configuration:

" Vim: set fdm=marker fmr={{{,}}} fdl=0 fdls=-1:

In the above setting, we set the foldmethod (fdm) to marker and set foldmarker (fmr) to {{{,}}}. The start and end fold markers are separated by a comma. So in this example, the start and end fold marker are respective {{{ and }}}. Then Nvim will try to close the fold automatically based on the fold marker. If you use modeline, you must turn on the modeline options if it is off.

create a fold#

In your vim configuration, in order to create a section Nvim built-in options and settings, you can use the following boilerplate code:

" Nvim built-in options and settings {{{
    " put all your settings inside here
    set number
    set relative number
    " etc......
" }}}

When you save the file and open it again, you will find that the fold takes effect.

References

How to find the doc of some settings if we do not know its exact key-words?#

I saw some vimrc which have the following settings:

Since I donot know the keyword for this setting, I can not go to it directly with :h KEYWORD. We can use helpgrep instead, which will put a list of related results in a quickfix window. In this case, we can use :helpgrep toplevel and it returns 7 results. You can open the quickfix window with :cwindow command and then navigate a window using :cprevious and :cnext command.

References

  • vim doc: :h helpgrep

How do I set the working directory to where the currently opened file is?#

If you are editting a file, how to set vim’s working directory to the folder the file reside? In Vim, we can use :cd %:h. % represents the current file and :h is a modifier which gets the path to the current file. For more info about file modifiers, see :h cmdline-special.

References