annika, (edited ) to vim
@annika@xoxo.zone avatar

I'm playing around with and a clean config. Not sure if this is a LazyVim question, or a question, or an question, but what are the keyboard shortcuts for these autocomplete dropdowns? Is this "omni" completion?

<c-n> for next item, <c-p> for previous, enter to accept the suggestion? Is there anything else? I'm not sure where to find these in the help

Edit: Thanks @dpom, I think all the bindings I care about are indeed within nvim-cmp https://www.lazyvim.org/plugins/coding#nvim-cmp

scy, to vim
@scy@chaos.social avatar

(and ) will trigger au FileType netrw autocommands, as well as commands in after/ftplugin/netrw.vim when

• selecting a directory in a buffer
• selecting a file in a Netrw buffer (i.e. when leaving Netrw)

but not when first entering Netrw, e.g. by calling :Explore

Even though :set ft? will display 'netrw' no problem.

What the fuck?! I'm at a loss here, any hints greatly appreciated. :BoostOK:

Reproduce by doing

• nvim --clean
• :au FileType netrw echo 'netrw'
• :e .

scy, to vim
@scy@chaos.social avatar

With the minus key being the default #Netrw (and oil.nvim) shortcut for "change into parent directory", TJ DeVries suggested to globally (i.e. in normal edit buffers) map minus to "open Netrw (or oil) in the current window", and I think that's really clever.

Like, <CR> moves down into a directory or file, and - moves up into the parent directory – either of the directory you're currently browsing, or the file you're currently editing. Like a global "zoom out" key.

#Vim #Neovim

linuxiac, to neovim
@linuxiac@mastodon.social avatar

Neovim 0.10 terminal text editor brings a fresh default color scheme, built-in commenting, major Terminal UI enhancements, and more.
https://linuxiac.com/neovim-0-10-terminal-text-editor/

ctietze, to neovim
@ctietze@mastodon.social avatar

Recently picked up that an "IDE" is a largely uncustomized, out-of-the-box experience, and that (Neovimmers) call the result of their customizations a "PDE", a "Personal Development Environment" instead.

Made me wonder:

Is the notion that IDE's are what they are, mostly unchangable, a common one?

#neovim #ide

KaffDaddy, to neovim German
@KaffDaddy@chaos.social avatar

Ich habe gerade mit „Erschrecken“ festgestellt, wie lange ich schon PhpStorm nicht mehr geöffnet habe. Das war eine Update-Orgie, die einem Windows alle Ehre gemacht hätte. Und dabei wollte ich nur schnell mal einen Blick auf den Datenbank-Client werfen. Weil ich sowas in der Art jetzt auch direkt in neovim habe: https://www.insomniaonline.de/ein-datenbank-client-in-neovim #neovim #database

hund, to neovim
@hund@fosstodon.org avatar
zstix, to neovim
@zstix@fosstodon.org avatar

#neovim version 0.10 was just released!

https://neovim.io/doc/user/news-0.10.html

vonheikemen, to neovim
@vonheikemen@hachyderm.io avatar

happy neovim release day to those who celebrate (those who didn't see a wall of plugin deprecation warnings after updating).

here's a nice blogpost that explains some of the new features (written by a neovim contributor)

https://gpanders.com/blog/whats-new-in-neovim-0.10/

#neovim

raichoo, to neovim
@raichoo@chaos.social avatar

And just like that #neovim 0.10 is out 🎉

VimLinks, to neovim
@VimLinks@hachyderm.io avatar

Neovim 0.10 has officially been released: https://github.com/neovim/neovim/releases/tag/v0.10.0

#neovim

raichoo, to neovim
@raichoo@chaos.social avatar

More #neovim spring cleaning 🧹 Replaced the trusty vim-commentary with Comment.nvim. It's context aware and can use #treesitter to determine the correct commentstring for injected languages. 👍 https://github.com/numToStr/Comment.nvim

raichoo, to neovim
@raichoo@chaos.social avatar

Just switched to using on for highlighting. Gamechanger 🤯

ah, to neovim
@ah@floss.social avatar

Showing lines not covered by tests in #Neovim is such a game changer! Covered lines are not marked, uncovered lines have a red mark.

I'm using this great plugin, together with mix coveralls.lcov: https://github.com/andythigpen/nvim-coverage

#myElixirStatus #Elixir

hgrsd, to rust
@hgrsd@hachyderm.io avatar

Which IDE do you use for Rust development?

I've been moving between neovim, helix (can't get over the slightly different mental model compared to vim), vscode, rustrover... Curious what others use.

#rustlang #rust

nehu,
@nehu@mastodon.cloud avatar

@hgrsd I found it easier to hack on #helix than manage #neovim plugins, so I brought some #vim keybindings to Helix. My „soft fork“ is still young, but the idea works (https://github.com/usagi-flow/helix); been using it productively for quite a while.

sen, to markdown
@sen@androiddev.social avatar

How many of you write stuff on your phone regardless of how often?

How important is it to visually see the styling of Markdown elements while writing?

RL_Dane,
@RL_Dane@fosstodon.org avatar

@sen

Only occasionally, via #SimpleNote.

I almost never view the formatted version, and even on the desktop, I generally only view the live highlighting in #NeoVim, or use a terminal markdown viewer that performs very similar basic formatting.

The only time I'm viewing fully-fornatted markdown output is when I'm proofreading blog posts before publishing. (In a web browser)

scy, to vim
@scy@chaos.social avatar

ughhh, is such a mess.

But it comes with every installation of and , so as someone who enjoys minimalism and likes to keep the number of additional plugins to a minimum, I feel like I should learn to use it and integrate it into my workflow.

But I've just used :Rexplore on a dirty file with 'nohidden' and it simply replaced my file's contents with the directory listing 😬

Also, don't make the mistake of looking at its source, or visiting the maintainer's "website" …

gnadenelfmeter,
@gnadenelfmeter@chaos.social avatar

@scy I have simply deactivated unneeded plugins in my options.

-- Disable bloated stuff
local disabled_built_ins = {
"2html_plugin",
"getscript",
"getscriptPlugin",
"gzip",
"matchit",
"netrw",
"netrwPlugin",
"rplugin",
"spellfile_plugin",
"tar",
"tarPlugin",
"tohtml",
"tutor",
"vimballPlugin",
"zip",
"zipPlugin",
}

for , plugin in pairs(disabled_built_ins) do
vim.g["loaded
" .. plugin] = 1
end

RL_Dane, to vim
@RL_Dane@fosstodon.org avatar

Hey / gurus,

Is there any way to make the spelling checker ignore words with numbers in them?

Couldn't find a good answer online.

seve_py, to vim
@seve_py@fosstodon.org avatar

Curious about how many Vim/Neovim plugins you’re rocking? 🤔 Jump into your terminal, navigate to your Vim or Neovim configuration directory, and run this command: ls -alp | wc -l. I currently have 41 plugins, but I’m aiming to slim down to 30-35. How about you? Share your plugin count below!

seve_py,
@seve_py@fosstodon.org avatar

@tartley I’m genuinely surprised! I’ve watched YouTube videos where Vim/Neovim has been transformed into a VSCode-like editor. I expected a whopping 100+ plugins, but the numbers I’ve seen here make me wonder if a plugin manager is even necessary. #Vim #Neovim

Thanks for your reply 😊👍

RL_Dane, to vim
@RL_Dane@fosstodon.org avatar

When you're in a web browser and and end an input form with [Esc]:wq

#derp ;) #vi #vim #neovim #nvim

hyde, to neovim
@hyde@lazybear.social avatar

Markdown tables, let's make them beautiful with !

[16/100]

[3/31]

https://lazybear.io/posts/markdown-tables-and-neovim

vinib, to vim
@vinib@fosstodon.org avatar

users: do you use the editor for project-wide find and replace or just regular shell?

KaffDaddy, to neovim German
@KaffDaddy@chaos.social avatar

So wunderschön! Vielleicht liegt es auch daran, dass ich mit der Ursuppe der Computer groß geworden bin, aber ich finde es ziemlich cool, was man so mit minimalen Dingen anstellen kann. #neovim #lsp

LSP-Informationen innerhalb eines Controllers, auch endlich mit farblich abgesetzten Rändern.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • provamag3
  • rosin
  • tacticalgear
  • Durango
  • DreamBathrooms
  • mdbf
  • magazineikmin
  • thenastyranch
  • Youngstown
  • khanakhh
  • slotface
  • vwfavf
  • everett
  • kavyap
  • megavids
  • osvaldo12
  • modclub
  • GTA5RPClips
  • ethstaker
  • InstantRegret
  • cisconetworking
  • cubers
  • ngwrru68w68
  • tester
  • normalnudes
  • Leos
  • anitta
  • JUstTest
  • All magazines