预防感冒吃什么药
百度 据悉,该案系全国首例网购平台主动打假民事诉讼案。
Questions regarding Neovim, a refactored fork of Vim. Should be used with other tags to narrow down the question.
8 questions from the last 30 days
1
vote
1
answer
86
views
Line numbers in terminal mode
I want to enable line numbers in terminal mode in Neovim.
I used the following snippet:
vim.api.nvim_create_autocmd("TermOpen", {
callback = function()
vim.opt_local.number = ...
1
vote
0
answers
56
views
How to adapt a vim-plug example to lazy.vim?
I use Neovim with lazy.nvim plugin manager on macOS. I am trying to get cmp-zotcite (autocomplete zotero citationkeys) to work, which requires jalvesaq/zotcite (talks to zotero SQL database) plugin ...
1
vote
1
answer
28
views
Why are TypeScript files with shebang in nvim rendered in gray?
I have installed the up-to-date tree-sitter-typescript, and it works well in typescript files without shebang.
I searched online but couldn't find any particularly similar questions. Some people ...
1
vote
1
answer
26
views
Map equal to gq in Neovim
The title says it all. I'm trying to map <Equal> to gq behavior in Neovim both when in Normal mode (in that case do gqq) and in Visual mode (in that case do gq) but somehow this is not working.
...
0
votes
0
answers
67
views
VTSLS language server looks attached at output of :LspInfo, but it does not function except basic diagnostics
Here is :LspInfo output:
- vtsls (id: 5)
- Version: 0.2.9
- Root directory: ~
- Command: { "vtsls", "--stdio" }
- Settings: {
vtsls = {
tsserver = {
...
0
votes
1
answer
15
views
nvim terminal nested nvim how to return focus to inner nvim
I use nvim and lazygit in the terminal, with the lazygit configuration file located at ~/.config/lazygit/config.yml.
The configuration is set as follows:
os:
edit: 'nvim {{filename}}'
editAtLine: '...
1
vote
1
answer
10
views
synID() on treesitter highlighting
My script includes synID() but does not work on a help file after nvim 0.10.0. It is because nvim starts to use treesitter highlighting and does not set the syntax option. Is there any alternative ...
0
votes
0
answers
18
views
Breakpoint Not Being Hit (trying to use neotest plugin with neotest-jest)
I'm having trouble configuring neotest-jest to work with Typescript. I've created a minimal Typescript application with a single file and an accompanying unit test in jest, but when I attempt to ...