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

推荐订阅源

L
LangChain Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
雷峰网
雷峰网
量子位
V
V2EX
S
SegmentFault 最新的问题
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
T
Tailwind CSS Blog
博客园_首页
博客园 - Franky
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
美团技术团队
Y
Y Combinator Blog
The Cloudflare Blog
C
Check Point Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
B
Blog
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed

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 Nvim/Vim Techniques That Make My Life Easier -- Ser...
2021-01-07 · via jdhao's digital space

This is the 9th 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 I return a key press from a function and use it in a mapping#

I want to write a function to return <Tab> key or <Ctrl-N> based on whether completion menu is available, and use the return value in an insert mode mapping. The initial code is:

inoremap <expr> <Tab> MyTabFun()
function! MyTabFun()
  if pumvisible()
    return "<C-N>"
  else
    return "<Tab>"
  endif
endfunction

However, the function returns those characters literally instead of as key press. This is because Vim thinks that you want to insert those keys literally. To signal a key press, we need to escaped it. Like the following:

return "\<C-N>"
" or
" return "\<Tab>"

The relevant vim doc on this topic is :h expr-quote.

Ref:

Get character at a specific index in a multi-byte aware fashion#

Unlike Python, in Vim script, string indexing uses byte index by default, not character indexing. Byte indexing works well for ASCII characters. Once your string contains multi-byte characters, things no long works as expected. For example, if we run the following code

Vim prints <e4>, the first byte of in UTF-8 encoding (the binary representation for 你 using UTF-8 encoding is \xe4\xbd\xa0).

How to we get the character at a specific index? Using strcharpart() instead. For example,

let my_str = '你好吗'
"result will be '你', the first char in my_str
echo strcharpart(my_str, 0, 1)

" result will be '好', the second char in my_str
echo strcharpart(my_str, 1, 1)

We can also use the following convenience function:

function!  CharAtIdx(str,  idx)  abort
    " Get char at idx from str. Note that this is based on character indexing
    " instead of the byte index.
    return  strcharpart(a:str,  a:idx,  1)
endfunction

Then, to get first char of a string, use CharAtIdx(my_str, 0).

Get string length regardless of ASCII or not#

This is related to the previous tip. There is function strlen() or len() in Vim, but they only calculates byte length of a string, instead of character length, like what len() in Python does. We can instead use the strchars() to get string length. I consider this one of the many hidden quirks of Vim. We just need to get used to it.

Use neovim as git diff and merge tool#

Here is how to set up neovim as a git diff and git merge tool. Add the following config to the file $HOME/.gitconfig:

[diff]
    tool = nvimdiff
[difftool]
    prompt = false
[difftool "nvimdiff"]
    cmd = "nvim -d \"$LOCAL\" \"$REMOTE\""
[merge]
    tool = nvimdiff
[mergetool]
    prompt = true
[mergetool "nvimdiff"]
    cmd = "nvim -d \"$LOCAL\" \"$REMOTE\" \"$MERGED\" -c 'wincmd w' -c 'wincmd J'"

Ref:

Move the view horizontally#

If we do not wrap the text and the line text length exceed the window size, some text will be hidden beyond the current view port. To move the view port horizontally, Vim has the following normal mode command:

  • {count}zl: move the current view port {count} characters to the right, default is 1 if no {count} provided.
  • {count}zh: move the current view port {count} characters to the left, default is 1 if no {count} provided.
  • zL: move the current view port half screen width to the right.
  • zH: move the current view port half screen width to the left.

The default behavior for zL and zH is to move the view port half screen width, which may be too much. We can map these shortcuts to use smaller steps:

nnoremap zL 10zl
nnoremap zH 10zh

Ref: