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

推荐订阅源

Martin Fowler
Martin Fowler
Y
Y Combinator Blog
M
MIT News - Artificial intelligence
The Cloudflare Blog
WordPress大学
WordPress大学
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - 司徒正美
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
J
Java Code Geeks
云风的 BLOG
云风的 BLOG
C
Check Point Blog
D
DataBreaches.Net
T
The Blog of Author Tim Ferriss
V
V2EX
F
Fortinet All Blogs
B
Blog
大猫的无限游戏
大猫的无限游戏
N
Netflix TechBlog - Medium
B
Blog RSS Feed
A
About on SuperTechFans
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

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
I read the nvim v0.8 release note so you do not have to
2022-10-05 · via jdhao's digital space

This is not a complete list of changes. Just what I have noticed. Complete release note for nvim 0.8 is here.

Nvim-lsp update#

server capabilities#

The old client.resolved_capabilities table is changed to client.server_capabilities, and the keys have also changed.

oldnew
client.resolved_capabilities.document_formattingclient.server_capabilities.documentFormattingProvider
client.resolved_capabilities.document_range_formattingclient.server_capabilities.documentRangeFormattingProvider
client.resolved_capabilities.document_highlightclient.server_capabilities.documentHighlightProvider

To check the complete server_capabilities table for a file, open that file, and run the following command:

lua =vim.lsp.get_active_clients()[1].server_capabilities

It will print the full table.

method changes#

Lsp format method has changed, both vim.lsp.buf.formatting_sync() and vim.lsp.buf.formatting() are deprecated. Now we should use vim.lsp.buf.format(), which has async param (default false) to control whether formatting should be async.

vim.lsp.buf.range_formatting() is also deprecated. Now the formatexpr option for your buffer will be set to vim.lsp.formatexpr() if it is not set by user. To format the selected code, you just press gq instead.

others#

This reddit post also shares other changes, like the LspAttach and LspDetach events, tagfunc, omnifunc support etc.

Options and defaults#

mouse#

Mouse is enabled by default1 and mousescroll option is added, you can define how many lines to scroll like this:

set mousescroll=ver:1,hor:5

Also if you set mousemodel=popup, nvim now shows a popup menu. To disable this, just use set mousemodel=extend.

winbar/cmdline#

Nvim has added a winbar option, it is like statusline, but on top of your window.

For cmdline, you can use set cmdheight=0 to hide it completely, and it will show when you run some commands. You may see the press enter message often when some messages are printed, which may be annoying. There is also a plugin noice.nvim made to ease the issue.

clickable statusline and winbar#

Nvim 0.8 adds clickable element in statusline and winbar, the syntax is %@some_func@text_shown%X. some_func is the function that will be run when you click text_shown.

Here is a demo in Lua:

function Hello(...)
  local arg = {...}
  arg = vim.inspect(arg)
  print('hello world, arg:', arg)
end

local w = vim.fn.winwidth(0)
local pos = math.floor(w/2)

local stl = string.rep(" ", pos)
stl = stl .. "%5@v:lua.Hello@click me%X"

vim.o.statusline=stl

Save it as test.lua, then run nvim -u test.lua. Click the text click me on the statusline, you will see the message printed.

State dir change#

The directory for storing shada, undo, swap, log, lsp-log is changed from ~/.local/share/nvim to ~/.local/state/nvim. Check the exact directory with command echo stdpath('state'). See also https://github.com/neovim/neovim/issues/14090#issuecomment-1125055183.

filetype.lua by default#

The new filetype.lua system will be used by default, and the following config should be removed:

vim.g.do_filetype_lua = 1
vim.g.did_load_filetypes = 0

* and # can search selected text#

* and # can now search selected text literally2. Previously I was using vim-asterisk together with nvim-hlslens. Now I can remove vim-asterisk, with a little hack:

keymap.set("n", "*", "", {
  callback = function()
    vim.fn.execute("normal! *N")
    hlslens.start()
  end,
})
keymap.set("n", "#", "", {
  callback = function()
    vim.fn.execute("normal! #N")
    hlslens.start()
  end,
})

It does has limitations, for example, you can not search multi-line selections.

Treesitter#

Now the treesitter parser for vim, lua, and help is enabled by default. But currently the help doc parser seems to have issues regarding conceal, as reported in issue here.

Misc#

Man command improve#

  • It is implemented in lua and should be faster compared to its old vim implementation3.
  • In buffer opened by :Man, you can type gO to show the argument list view4.

Check command or map location#

If the lua mapping is defined the via callback, we can now see its defined location.

vim.keymap.set("n", "<leader>sv", "", {
  silent = true,
  desc = "reload init.lua",
  callback = function()
    vim.cmd([[
      update $MYVIMRC
      source $MYVIMRC
    ]])
    vim.notify("Nvim config successfully reloaded!", vim.log.levels.INFO, { title = "nvim-config" })
  end,
})

For example, I have the above mapping, now I can see where it is defined with verb nmap ,sv (my leader key is comma).

However, for mapping defined via right hand side string, we only see that the mapping is set from lua, but not the exact location.

By right hand side string, I mean mapping like the following:

vim.keymap.set("n", "<leader>p", "m`o<ESC>p``", { desc = "paste below current line" })

This is unlike the mapping defined in vim script. To see the mapping location, start nvim with nvim -V1, then use the :verbose command again, we should see the mapping location.

This is still not perfect and confusing even for experienced users like me.

vim.fs module#

vim.fs (:h lua-fs) aims to provide some functions for common path operations like os.path in Python. For example:

local d = vim.fs.dirname('~/.config/nvim/init.lua')
print(d)

startup time for require#

Now time for require() is also shown for nvim --startuptime time.log like this:

....
206.153  000.101  000.101: require('lualine_require')
206.558  000.632  000.531: require('lualine')
214.826  000.150  000.150: require('lualine.utils.mode')
216.924  000.140  000.140: require('lualine.extensions.nerdtree')
217.125  011.338  010.417: require('config.statusline')
....

change of support for old systems#

Linux#

Nvim build env for Linux is updated to Ubuntu 20.04, so the nightly release may not work for old machines any more5. I tested latest nvim nightly on CentOS 7.4, and it can not work anymore, with the following error:

/lib64/libc.so.6: version `GLIBC_2.28’ not found

Other people is building nvim for old Linux systems, see discussions here.

Windows#

For Windows, only Windows 10 version 1809 or later is supported6.