Skip to content
#

Neovim

neovim logo

Neovim is a refactor, and sometimes redactor, in the tradition of Vim. It is not a rewrite but a continuation and extension of Vim. Neovim is built for users who want the good parts of Vim, and more.

Here are 1,734 public repositories matching this topic...

taotao54321
taotao54321 commented Apr 23, 2020

When I set boolean options using let, they accept v:true but not v:false.
Nvim says E521: Number required: &ignorecase = 'false'.

  • nvim --version: NVIM v0.5.0-456-gdeb4566ca
  • vim -u DEFAULTS (version: ) behaves differently? NO
  • Operating system/version: Debian testing, linux-image-5.5.0-1-amd64
  • Terminal name/version: alacritty 0.4.2
  • $TERM: screen-256color

Steps

SpaceVim
maharvey
maharvey commented Mar 6, 2020

Expected behavior

Disable an annoying clang-tidy warning on linux

Steps to reproduce

  1. Create a source file containing strncpy()
  2. Observe that neomake complains
  3. There is no way to disable this warning globally

In this case I would need to pass --checks=-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling to clang-tidy

Adding this as args for the c ma

chinleung
chinleung commented Mar 9, 2020

Hi,

When I run my tests using the neovim strategy, it opens a new terminal but auto focus on the buffer. Then I have to press <C-o> to not close the buffer and go back to my split pane.

Is there a way to have it open but not switch my focus to the newly opened pane automatically?

lebigot
lebigot commented Dec 5, 2019

As a user (not versed in vimscript), I can't figure out how to use this module: may I suggest that it could be used by many more people if there was a user guide, that starts with the most commonly used features?

For example, I had no idea of how to do completion in vim-lsp: the provided links are not clear.

Another example is warnings: they are active by default, but how to learn more about

alaiyeshi025
alaiyeshi025 commented Jul 11, 2019

如果使用gvim --remote-tab-silent首次打开MD文件时(此时gvim会注册servername "GVIM"),似乎BufEnter状态无法正确识别,因此s:init_command()和s:MkdpAU()都不能正常执行,只有使用givm --remote-tab-silent再打开任意一个文件后,才正常。

我把BufEnter改为BufRead,问题消失。

function! s:init() abort
if g:mkdp_command_for_global
au BufEnter * :call s:MkdpAU()
else
au BufEnter *.{md,mkd,markdown,mdown,mkdn,mdwn} :call s:MkdpAU()
endif
if g:mkdp_auto_star

Created by Thiago de Arruda

Released January 31, 2014

Latest release 7 months ago

Repository
neovim/neovim
Website
neovim.io
Wikipedia
Wikipedia

Related Topics

neovim-configuration neovim-dotfiles neovim-plugin nvimrc vim
You can’t perform that action at this time.