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

推荐订阅源

IT之家
IT之家
U
Unit 42
大猫的无限游戏
大猫的无限游戏
H
Help Net Security
G
Google Developers Blog
Recent Announcements
Recent Announcements
B
Blog RSS Feed
罗磊的独立博客
博客园 - Franky
J
Java Code Geeks
S
SegmentFault 最新的问题
D
DataBreaches.Net
C
Check Point Blog
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
腾讯CDC
博客园_首页
美团技术团队
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
GbyAI
GbyAI
The Cloudflare Blog
aimingoo的专栏
aimingoo的专栏

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 格式 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 Mintty Tips and Configurations
Nifty Nvim Techniques That Make My Life Easier -- Series 6
2019-12-21 · via jdhao's digital space

This is the 6th 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 do we get the script names when we get the <SNR> number?#

When we use a script local function (see :h script-local) in mapping with the following form

nnoremap <leader><space> :call <SID>some_function()<cr>

Vim will replace with followed by a number and an Underscore, like this: <SNR>12_some_function(). The number is the order the script containing the function is sourced by Vim. To find the script, use the command :scriptnames, which will print the path of different scripts in the order of being sourced by Vim.

The Vim plugin scriptease provides a command :Scriptnames which will show all the sourced script and their index in a quickfix window for better inspection.

References#

Open a file and go to specific line#

When you run a source file, if something goes wrong, you may see a stack trace of error lines. You may want to jump to the specific lines in that file. If you are in command line, you can use nvim +{NUM} test.py to open file test.py and go the line NUM, for example:

# open test.py and go to 10th line
nvim +10 test.py

If you are already in Neovim and want to open a file and go to a particular line, you can use :e or :edit command:

References#

  • Nvim doc: :h :edit and :h +cmd.

Repeat previous command line command#

If you have used a command, how do you repeat that command without typing it again in the command line? You can just press @: (see :h @:).

References#

Show character count for selected region#

When we select some characters in visual mode, we want to know exactly how many characters are selected. This can be achieved by pressing g followed by Ctrl-G. The info about selected texts will be print on the command line:

Selected 1 of 42 lines: 1 of 306 Words; 6 of 2015 characters; 18 of 2027 bytes

References#

Open a file from pipe output in nvim#

When the output of a terminal pipe is a file name and you follow it with nvim command, nvim will interpret the filename as text and put the texts in an unnamed buffer.

If you want to open the corresponding file instead, you may use xargs:

find ~ -type f -name "init.vim" -print |xargs nvim

Or you can use the bash $ expansion like the following:

nvim $(find ~ -type f -name "init.vim" -print)

References#

How to confirm a wildmenu completion and go to next level?#

When we set the option wildmenu (set wildmenu), we can cycle between the completion items in the command line using Tab. For example, when we use :edit command to open files, we can use Tab to select which file to edit. But how do we confirm what we want to go to a subdirectory to do further completions?

According to the documentation of wildmenu, we can press the key to confirm a selection or go to the subdirectory if current selection is a directory. BTW, you can press key to go to parent directory. Pressing and will cycle backward and forward the completion items, just like what Ctrl-P and Ctrl-N does.

References#