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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
MyScale Blog
MyScale Blog
U
Unit 42
M
MIT News - Artificial intelligence
小众软件
小众软件
P
Proofpoint News Feed
雷峰网
雷峰网
L
LangChain Blog
S
SegmentFault 最新的问题
腾讯CDC
F
Fortinet All Blogs
A
About on SuperTechFans
WordPress大学
WordPress大学
Vercel News
Vercel News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
G
Google Developers Blog
大猫的无限游戏
大猫的无限游戏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
D
Docker
N
Netflix TechBlog - Medium
Apple Machine Learning Research
Apple Machine Learning Research
Recent Announcements
Recent Announcements
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog

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
Why You Should Use Snippets in Vim/Neovim
2020-05-27 · via jdhao's digital space

If you find yourself repeatedly type some similar-structured text in Vim/Nvim, you need to ask yourself if there is a better way to do it.

Snippet is a good way to insert structured text: you just need to type the trigger word and press the trigger key, then you have the whole text ready for you to edit. For example, when I am writing my blog post, I use meta as the trigger to generate the post front matter info.

Ultisnips is a good tool to automate text insertion, an it can increase your efficiency dramatically. For how to configure ultisnips for Neovim, refer to this post. In the following, I would like to show several cases of using snippet to improve my efficiency.

Generate debian change log file signature#

I saw a post on stackExchange that some one want to insert debian change file signature of the format:

-- Alexis Wilke <alexis@example.com>  Tue, 26 May 2020 18:00:09 -0800

Each time when he writes this signature, only the date changes. The date is also in standard format. This is good case to show how we can save our time with snippet.

We need create a file named debchangelog.snippets in our custom snippet directory and add the following snippet into it:

snippet debsig "debian change log signature" w
-- Alexis Wilke <alexis@example.com>  `!v strftime('%a, %d %b %Y %X %z')`
endsnippet

The backticked text use the interpolation feature of Ultisnips. !v means to use Vim language interpolation, and it should be followed by valid Vim script expressions, like the one given above.

After adding this snippet, when you open a debian changelog file1, type debsig and press the trigger key, it will be expanded to the signature automatically.

Generate main function template for Python#

If a Python module can be imported and run as standard alone script, it is often a good practice to use the following template:

def main():
    # the main function logic here


if __name__ == "__main__":
    main()

It is cumbersome and time-wasting to type this every time we create a file. Let’s create a snippet for it. In the file python.snippet under your custom snippet directory, add the following snippet:

snippet main "Main function boilerplate" b
def main():
    $0


if __name__ == "__main__":
    main()
endsnippet

When you create a Python source file, type main and press trigger, the file template will be created automatically for you.

Insert center-aligned image in Markdown#

The default Markdown syntax for image can not align the image or set the image display size. We can use the raw HTML tag to achieve this:

<p align="center">
<img src="image_url" width="800">
</p>

To avoid typing these HTML tags every time, we can add the following image snippet to the file markdown.snippet under our custom snippet directory:

snippet img "Aligned image using HTML tag"
<p align="center">
<img src="${1:URL}" width="${2:800}">
</p>
$0
endsnippet

Then we can use img to trigger the image snippet. You can then press the forward jump and backward jump shortcut for Ultisnips to jump back and forth between the predefined stop positions to insert URL and adjust the image display size.