1
7
new community about Kakoune (discuss.tchncs.de)
submitted 8 months ago by RAM@discuss.tchncs.de to c/vim@lemmy.ml

hello :))

I hope this post is okay. I just wanted to share, that I've created a new community on lemmy for talking about the modal text-editor Kakoune (inspired by vim).

It is located at !kakoune@discuss.tchncs.de and you're welcome to join whether you're using kakoune already or just want to learn about it :))

2
5
submitted 9 months ago by cypherpunks@lemmy.ml to c/vim@lemmy.ml
3
46
submitted 9 months ago by hai@lemmy.ml to c/vim@lemmy.ml
4
10
Vim's useful lists (codeinthehole.com)
submitted 11 months ago by gdaofb27584@lemmy.ml to c/vim@lemmy.ml
5
20
submitted 1 year ago by marv99@feddit.de to c/vim@lemmy.ml

cross-posted from: https://derp.foo/post/233472

There is a discussion on Hacker News, but feel free to comment here as well.

6
15

Looks like the project is in good hands and will make gentle steps forward.

7
23
submitted 1 year ago by fievel@lemm.ee to c/vim@lemmy.ml

cross-posted from: https://lemmy.world/post/2712042

Bram Moolenaar, the creator of the widely respected Vim code editor, has passed away at the age of 62. The family announced his passing in a heartfelt Google Groups message on August 5, revealing a sudden progression of a medical condition that had afflicted him.

8
25
submitted 1 year ago by fox@lemm.ee to c/vim@lemmy.ml
9
2
Leemy Newbie (reddthat.com)
submitted 1 year ago by wisdomlight@reddthat.com to c/vim@lemmy.ml

Hi, I am new to Lemmy Is it possible that I am the 2nd subscriber to this channel(or however it is called in the Lemmyverse) ?

10
4
submitted 1 year ago by jherazob@beehaw.org to c/vim@lemmy.ml

Seen a few ways but all seem to be with deprecated/abandoned methods or tools

11
6
submitted 1 year ago* (last edited 1 year ago) by original_ish_name@latte.isnot.coffee to c/vim@lemmy.ml

Solution:

  1. Make all command substition in a make done through the assignment operator e.g.
cflags != pkg-config --cflags gtk4
libs != pkg-config --libs gtk4

all:
	gcc $(cflags) -o watch main.c $(libs)

not

all:
	gcc $$(pkg-config --cflags gtk4) -o watch main.c $$(pkg-config --libs gtk4)
  1. add this to your .vimrc: let g:ale_c_parse_makefile = 1

ALE gives me a warning when I use gtk

#include <gtk/gtk.h> /* E: gtk/gtk.h: No such file or directory

This is probably happening because ALE isn't using my compiler flags gcc $( pkg-config --cflags gtk4 ) -o program main.c $( pkg-config --libs gtk4 ) that I stole from the gtk documentation. These compiler flags allow gcc to find gtk/gtk.h even though it is in gtk-4.0/gtk/gtk.h

How do I make ALE aware of my compiler flags?

12
3
submitted 1 year ago* (last edited 1 year ago) by croobat@lemmy.world to c/vim@lemmy.ml

Hi, I have set up my neovim config listchars like so:

vim.opt.listchars = { tab = "│ ", trail = "·", precedes = "<", extends = ">", nbsp = "○" }

But for empty lines between the indentations there are these awful holes left.

I used to use intent-blankline.nvim but I want to try to tone down my plugin usage, and I pretty much used it only to fix this issue, could somebody help me?

13
3
submitted 1 year ago by kenoh@lemm.ee to c/vim@lemmy.ml

A guy at my work had this printed out and hanging in his office.

14
1
submitted 2 years ago by nachtigall@feddit.de to c/vim@lemmy.ml
15
1
submitted 2 years ago by jokeyrhyme@lemmy.ml to c/vim@lemmy.ml

I switched over to the completion plugin that is part of https://github.com/echasnovski/mini.nvim and I'm impressed with how suitable it is for my use case without any configuration

Sure, it's not as extensible, but it's so set-and-forget and still gives suggestions from LSP

16
1
Vim 9.0 released (www.vim.org)
submitted 2 years ago* (last edited 2 years ago) by nachtigall@feddit.de to c/vim@lemmy.ml
17
2
Real-time LaTeX Using (Neo)Vim (ejmastnak.github.io)
submitted 2 years ago by gdaofb27584@lemmy.ml to c/vim@lemmy.ml
18
1
submitted 2 years ago by nachtigall@feddit.de to c/vim@lemmy.ml

There is a project to modernize the bundled color schemes in vim.

19
2
SpaceVim (spacevim.org)
submitted 2 years ago by sgtnasty@lemmy.ml to c/vim@lemmy.ml

SpaceVim is a distribution of the Vim editor that’s inspired by spacemacs. It manages collections of plugins in layers, which help collecting related packages together to provide features. This approach helps keeping configuration organized and reduces overhead for the user by keeping them from having to think about what packages to install.

20
1
submitted 3 years ago* (last edited 3 years ago) by gdaofb27584@lemmy.ml to c/vim@lemmy.ml

The three last articles are mandatories

21
1
submitted 4 years ago by torresjrjr@lemmy.ml to c/vim@lemmy.ml

This plugin adds Go language support for Vim. It includes:

  • Commands for building, installling, running, testing, etc.
  • Improved syntax highlighting and folding.
  • Goto symbol declaration and documentation lookup.
  • Debugging, completion, formatting, linting, etc. with gopls.

BSD 3-Clause License

22
2
submitted 4 years ago* (last edited 4 years ago) by torresjrjr@lemmy.ml to c/vim@lemmy.ml

vim-plug, written by Junegunn, is one of the most popular Vim plugin managers out there.

  • Easy to set up: Single file. No boilerplate code required.
  • Easy to use: Concise, intuitive syntax
  • Super-fast parallel installation/update (with any of +job, +python, +python3, +ruby, or Neovim)
  • Creates shallow clones to minimize disk space usage and download time
  • On-demand loading for faster startup time
  • Can review and rollback updates
  • Branch/tag/commit support
  • Post-update hooks
  • Support for externally managed plugins

MIT License

Junegunn writes about vim-plug in his blog post Writing my own Vim plugin manager.

23
2
submitted 4 years ago* (last edited 4 years ago) by SirLotsaLocks@lemmy.ml to c/vim@lemmy.ml

VIM - Vi Improved

7 readers
1 users here now

VIM - Vi Improved, text editor community

Please use English.

founded 4 years ago
MODERATORS