(Graphical) IDE’s are great for development, but they’re slow to start and heavy to run. Sometimes you just want to take a quick look at an xml or dockerfile and you don’t want to spin up the whole IDE for that.
I’ve recently rediscovered notepad++ for that (on windows), what’s your prefered easy-acces-tekst-editor?
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person’s post makes sense in another community cross post into it.
Hope you enjoy the instance!
Follow the wormhole through a path of communities !webdev@programming.dev
Vim if I’m on Linux, notepad++ if I’m on windows. Though I will use VSCode in both OS if want to make a lot of changes and run the file.
Helix
andCode - OSS
sometimes (Code - OSS
is an open source vscode distribution)You mean vscodium? VS Code is not OSS…
https://stackoverflow.com/a/58642895/18682712
I edited my comment to clarify it.
The GNOME text editor or Nano.
I appreciate Vim, but when I just need to inspect something or change a single line, the former are easier.
As for Neovim and Emacs… I don’t have eight hours to set aside monthly to keep them configured and working.
I’ve been a vim user for over a decade and I doubt I’ve spent eight hours configuring it in all that time.
Most of the configuration I’ve done in vim is to remove whatever someone else did. Like I log in as root on a server and someone put
set number
in/root/.vimrc
. Like having the line number in the bottom right wasn’t enough for you, you need to waste three columns to show numbers for every line on the screen, and now I can’t copy and paste from vim without having to delete three columns from every line? NO.VSCodium, because it’s not a plug-in filled beast like my regular VSCode is. Also Micro is neato. Helix seems nice too.
Kate on Linux, Notepad++ on Windows.
Also, Kate on Windows (it’s really good)
Didn’t know there’s Kate for windows, nice
My own. My Emacs config grew over years to several thousand lines, and it got to a point where I decided I could write an editor in fewer lines that it took to configure Emacs how I liked it. It’s … not for everyone. I’m happy with it, because it does exactly only the things I want it to, and nothing else, but it does also mean getting used to quirks you can’t be bothered to fix, and not getting to blame someone else when you run into a bug.
That said, writing your own editor is easier than people think, as long as you leverage libraries for whichever things you don’t have a pressing need to customize (e.g. mine is written in Ruby, and I use Rouge for syntax highlighting, and I believe Rouge is more lines of code than the editor itself thanks to all the lexers)
Helix, Lapce, and/or VSCodium
As often as not, I’m using nano on the command line. It’s available in Windows through WSL.
Being honest, WSL makes running Windows so much easier.
deleted by creator
Wsl is nice, but it’s not much more than an integrated vm. It’s good enough to be an asset, but it also lacks enough to make me long for linux.
Kate, though it gets a bit IDE like.
vim on any *nix box, Notepad++ when forced to use Windows.
Vim is cross platform, just in case you don’t know
Hadn’t looked into that for a long time, will try. I think the biggest hurdle for me might be native Windows terminals still being shit.
Yeah absolutely. I only use the graphical version (gvim) on Windows.
It’s the best solution for editing huge text files in Windows. The other text editors slow to a crawl with big files, but gvim has no problem.
This is going to be a boring answer but I use neovim. I do use it as my ide as well but it’s so fast and lightweight that when I need to edit a random config file or something, I just start another instance of it.
Vim for everything
Neovim for most things. At work I use VSCode for Java stuff
Sublime Text 3 perpetual license. I would move to VSCode as my “quick editor” but I’m not trusting an Electron app, for starters same document in both wastes 3x more RAM and second I can open 10GB SQL dumps in Sublime and perform find and replace operations in VSCode however…