Introducing
The Slant team built an AI & it’s awesome
Find the best product instantly
Add to Chrome
Add to Edge
Add to Firefox
Add to Opera
Add to Brave
Add to Safari
Try it now
4.7 star rating
0
What is the best alternative to GVim?
Ad
Ad
Vim
All
46
Experiences
Pros
30
Cons
15
Specs
Top
Pro
Lightweight and fast
When compared to modern graphical editors like Atom and Brackets (which have underlying HTML5 engines, browsers, Node, etc.), Vim uses a sliver of the system's memory and it loads instantly, all the while delivering the same features. Vim is also faster than Emacs.
See More
Top
Con
High effort to customize
A lot of time and effort is put in to make it specific to your needs.
See More
Top
Pro
Free and open-source software
Vim is open-source, GPL-compatible charityware.
See More
Top
Con
Difficult learning curve
You'll spend a lot of time learning all the commands and modes supported in Vim. You'll then spend more time tuning settings to your needs. Although once it's tuned to your needs, you can take your .vimrc to any machine you need and have the same experience across all your computers.
See More
Top
Pro
Works in terminal over SSH
Unlike other editors such as Sublime Text, Vim is a command line editor and hence can be used in remote development environments like Chromebooks via SSH.
See More
Top
Con
Difficult to copy, paste, and delete
See More
Top
Pro
Extremely portable
Vi/vim exists on almost all Unix-like platforms. It's the de-facto Unix editor and is easily installed on Windows. All you need to make it work is a text-based connection, so it works well for remote machines with slow connections, or when you're too lazy to set up a VNC/Remote Desktop connection.
See More
Top
Con
Poor support for external tooling
Many plugins depend on optional Python and Lua features, which may or may not be included in whatever binaries are available for your system. And without platform-specific hacks, it is difficult for plugins to operate in the background or use external tooling.
See More
Top
Pro
Keyboard-based, mouse-free interface, and trackpad support
There's no need to reach for the mouse or the Ctrl/Alt buttons again. Everything is a mere key press or two away with almost 200 functions specifically for text editing. Vim does support the mouse, but it's designed so you don't have to use it for greater efficiency. Versions of Vim, like gVim or MacVim, still allow you to use the mouse and familiar platform shortcuts. That can help ease the learning curve and you'll probably find you won't want to (or need to) use the mouse after a while.
See More
Top
Con
Poor feature discoverability
Though basic features like syntax checking, autocompletion, and file management are all available out of the box or with minimal configuration, this is not obvious to new users, who might get intimidated or assume they need to install complex plugins just so they can have this functionality. Other features new users might expect to find embedded in Vim, such as debugging, instead follow a UNIX-style model where they are called as external programs, the output of which might then be parsed by Vim so it can display results. Users not familiar with this paradigm will likely fault Vim for lacking those features as well.
See More
Top
Pro
Great productivity
Vim's keyset is mainly restricted to the alphanumeric keys and the escape key. This is an enduring relic of its teletype heritage, but has the effect of making my ost of Vim's functionality accessible without frequent awkward finger reaches.
See More
Top
Con
No smooth scrolling
Even with the GUI version, the lines jiggle line-by-line. If you are used to smooth scrolling, this is very annoying, especially when working with larger files.
See More
Top
Pro
Macros increase productivity
Many text editors have programmable macros, but since Vim is keyboard-based, your programmed macros are usually far more predictable and easier to understand.
See More
Top
Con
Doesn't play nice with the system cut/paste mechanisms
This can be worked around somewhat if you disable mouse for insert mode. You can then right-click your terminal and use paste like you would anywhere else in a terminal. But it still doesn't feel right when the rest of your system uses Ctrl-C/Ctrl-V, and you have a system clipboard manager, and so forth.
See More
Top
Pro
Excellent performance
As it loads the whole file into RAM, replacing all string occurrences in 100 MB+ files is quick and easy. Every other editor has sort of died during that. It is extremely fast even for cold start. Vim is light-weight and very compact. In terminal, it only uses a small amount of memory and anytime you invoke Vim, it's extremely fast. It's immediate, so much so you can't even notice any time lag.
See More
Top
Con
Outdated UI
See More
Top
Pro
Tons of plugins/add-ons
This makes Vim the definitive resource for every environment (Ruby/Rails, Python, C, etc.), or simply just provides more information in your view.
See More
Top
Con
Requires Brain Mode Switching
When editing in vim, you have you use the vim keys; when editing in every other window on your PC, or in Word or Excel or other application, you need to use the standard system key combinations. Learning the vim combinations can actually make you SLOWER at everything else.
See More
Top
Pro
Everything is mnemonic
No need to memorize different key combinations for things like deleting the text inside of a block or deleting the text inside of a pair of quotes. It's just a series of actions, or nouns and verbs, or however you prefer to think about it. If you want to delete, you select "d"; if you want it to happen inside something, you select "i"; and if you want the surrounding double-quotes, just select ". But if you were changing the text, or copying it, or anything else, you'd still use the same "i" and ". This makes it very easy to remember a large number of different extremely useful commands, without the effort it takes to remember all of the Emacs "magic incantations", for example.
See More
Top
Con
Slow when opening files with very long lines
A lot of very long lines can make Vim take up to a minute to open files, where a few other editors take only seconds to load the same file.
See More
Top
Pro
Vimtutor
Vimtutor is an excellent interactive tutorial for people with no prior experience of Vim. It takes about 30 minutes to complete.
See More
Top
Con
Consume brain energy for editing that should be used for logic
Text editing in vim is awesome, but it requires thinking about combination of commands. In other editors, you don't have to think about how to delete this part of code. You just think about how to implement a feature, what is a good design for this code. Even after you get used to using vim, it still requires your brain for editing.
See More
Top
Pro
Amazing extensibility
Vimscript provides a rich scripting functionality to build upon the core of Vim. When combined with things like Tim Pope's Pathogen plugin management system, it becomes easy to add support for syntax, debugging, build systems, git, and more.
See More
Top
Con
Foreign keyboards have a hard time on Vim out of the box
A lot of frequently-used keybinds are way harder to access on foreign keyboards because they use different layouts. For example, Germans use the QWERTZ layout, while French use the AZERTY.
See More
Top
Pro
Usable from a Terminal or with a GUI (GVim, MacVim)
If you happen to be logged into SSH, you can use Vim in a terminal. It can also run with a GUI too.
See More
Top
Con
Unintuitive mode switching
See More
Top
Pro
Has been supported for a long time
And will be supported for many years to come.
See More
Top
Con
Extensibility isn't that great
While it has gotten better and some projects are slowly starting to build proper extension support, it still can't and by design never will achieve the extensibility of another editor like emacs.
See More
Top
Pro
Once learned, it's very hard to forget
Vim's somewhat steep learning curve is more than made up for once you've mastered a few basic concepts and learned the tricks that allow you to program faster with fewer cut/paste mistakes.
See More
Top
Con
Works poorly out of the box with right-to-left
See More
Top
Pro
Can never outgrow it
The fact that very few, if any, people claim to be a "Vim Master" is a testament to the breadth and depth of Vim. There is always something new to learn - a new, perhaps more efficient, way to use it. This prevents Vim from ever feeling stale. It's always fresh.
See More
Top
Pro
Flexible feature-set
Vim allows users to include many features found in IDEs and competing editors, but does not force them all on the user. This not only helps keep it lighter in weight than a lot of other options, but it also helps ensure that some unused features will not get in the way.
See More
Top
Pro
Has multiple distinct editing modes
Interaction with Vim is centered around several "modes", where purpose and keybindings differ in each. Insert mode is for entering text. This mode most resembles traditional text entry in most editors. Normal mode (the default) is entered by hitting ESC and converts all keybindings to center around movement within the file, search, pane selection, etc. Command mode is entered by hitting ":" in Normal mode and allows you to execute Vim commands and scripts similar in fashion to a shell. Visual mode is for selecting lines, blocks, and characters of code. Those are the major modes, and several more exist depending on what one defines as a "mode" in Vim.
See More
Top
Pro
By default in Linux
All Linux distributions out there will have Vim built into them, which is highly convenient!
See More
Top
Pro
Vim encourages discipline
If you use Vim long enough, it will rewire your brain to be more efficient.
See More
Top
Pro
Useful undo features
Vim does not only offer unlimited undo levels, later releases support an undo tree. It eventually gives the editor VCS-like features. You can undo the current file to any point in the past, even if a change was already undone again. Another neat feature is persistent undo, which enables to undo changes after the file was closed and reopened again.
See More
Top
Pro
Donations and support to Vim.org helps children in Uganda through ICCF Holland
See More
Top
Pro
Built-in package management
Starting with Vim 8, a package manager has been built into Vim. The package manager helps keep track of installed plugins, their versions and also only loads the needed plugins on startup depending on the file type.
See More
Top
Pro
If you can use Vim you can also use vi
See More
Top
Pro
Works on Android
See More
Top
Pro
Productivity enhancing modal paradigm
As with all vi-like editors, Vim provides a modal paradigm for text editing and processing that provides a rich syntax and semantic model for composing succinct, powerful commands. While this requires some initial investment in learning how it works in order to take full advantage of its capabilities, it rewards the user well in the long run. This modal interface paradigm also lends itself surprisingly well to many other types of applications that can be controlled by vi-like keybindings, such as browsers, image viewers, media players, network clients (for email and other communication media), and window managers. Even shells (including zsh, tcsh, mksh, and bash, among others) come with vi-like keybinding features that can greatly enhance user comfort and efficiency when the user is familiar with the vi modal editing paradigm.
See More
Top
Pro
Asynchronous I/O support
Since Vim 8, Vim can exchange characters with background processes asynchronously. This avoids the problem of the text editor getting stuck when a plugin that had to communicate with a server was running. Now plugins can send and receive data from external scripts without forcing Vim to freeze.
See More
Top
Pro
Can set up keymapping
See More
Top
Pro
Multiple clipboards
It is called "registers".
See More
Top
Pro
Status Booster
Using vim not just increase your productivity, but helps you flex.
See More
Specs
Platforms:
Linux, macOS, Windows, Cygwin
License:
Vim License
Price:
0
Extension language:
Vim
Hide
See All
Experiences
free
2402
445
Textadept
All
7
Experiences
Pros
5
Cons
1
Specs
Top
Pro
Has both GUI and TUI
Both text and GUI versions behave mostly the same, just the way notepad users would expect it to. Like shift+arrows - select, Ctrl+c - copy, Ctrl+o - open a file.
See More
Top
Con
Community
Does not have an IRC channel or some kind of forum where a community of developers/plugin writers could evolve around. Has a mailing list which is said to be active but that does not feel that attractive.
See More
Top
Pro
Cross-platform
It's available for Windows, Mac and Linux.
See More
Top
Pro
Easily written plugins
You can write plugins pretty easily. Here is the API doc, quite compact. Here is a module which adds a support for ctags.
See More
Top
Pro
Small and portable
Has very few dependencies, and very small footprint. Can be copied to a new system in a moment, unpacked and be at your service.
See More
Top
Pro
Scriptable
Has a built-in lua engine.
See More
Specs
Platforms:
Windows, macOS, Linux, BSD
Hide
See All
Experiences
Free
43
3
Kate
All
10
Experiences
Pros
8
Cons
1
Specs
Top
Pro
Integrated terminal
Has a terminal that can sync to the location of your document, letting you compile or run your program quickly or run quick commands, all without leaving the editor.
See More
Top
Con
Hard to install on Windows or OS X
Kate can be a little hard to install and configure, especially for beginners. On Linux or BSD, it can be easily installed from your distribution's repositories.
See More
Top
Pro
Project mode
Kate allows you to make projects to simplify the organisation of your code. This brings in additional organization of an IDE without the overhead.
See More
Top
Pro
Fast and minimaistic
Kate is pretty fast and lightweight. This helps it with it's start up speed.
See More
Top
Pro
Syntax highlighting
Kate supports syntax highlighting for over 180 languages, from Assembler to Zsh.
See More
Top
Pro
Edit over FTP, SSH, or other protocols
Kate uses KDE's input and output libraries to read and write files, allowing seamless integration with FTP, SMB, SFTP, and many other protocols.
See More
Top
Pro
Thriving plugin ecosystem
Lots of plugins allow Kate to expand or shrink based on your needs. It includes GDB integration, XML completion, and symbol viewing to speed up programming.
See More
Top
Pro
By far one of the best and lightest text editors.
Notepads alternative (for the Windows users).
See More
Top
Pro
Vi entry mode
Kate has a vi entry mode.
See More
Specs
Platforms:
Windows, macOS, Linux, BSD
License:
LGPL-2.0-or-later, MIT
Collaborative editing:
No
RTL:
Yes
Hide
See All
Experiences
Free
148
19
UltraEdit
All
12
Experiences
Pros
9
Cons
2
Specs
Top
Pro
Handles large files (>1GB) extremely well
UltraEdit has small memory usage and allows for fast parsing/searching when handling large files.
See More
Top
Con
Proprietary
It's not free and a license costs $79.99.
See More
Top
Pro
Works perfectly with remote files
Supports several protocols for accessing remote files and working on them with the same ease as local files. Files can be integrated in the projects as normal files.
See More
Top
Con
The themes introduced in version 20 regressed certain aspects of syntax coloring
The themes simplified the syntax highlighting which lost the capacity to have as many colors as one wanted to define. Now it is limited to around 20 different colors. In general it's not a problem but in certain cases it broke coloring. For some reason, the classic theme is the only one that is totally pleasant for readability well with syntax highlighting.
See More
Top
Pro
Probably the most versatile general editor in existence.
If you need a general editor, UltraEdit is the way to go. If you were writing C/C++ all day, then this would be your editor. If you need to slog through large files then this is your go to editor. If you need to go through XML files, then this is your editor. If you need to sort data, then this your my editor.
See More
Top
Pro
Fast, stable, easy to use
It loads with a short delay, but once loaded it's snappy and rock-solid. Anyone accustomed to using Windows text editors will feel at home in its interface, and those that prefer alternate keybindings can easily change them.
See More
Top
Pro
Search and replace capabilities
From Ultraedit to Perl to Unix regex engines, the search and replace can accomplish just about anything.
See More
Top
Pro
Responsive company
Whether for feature requests, technical support or license questions, IDM is always quick to respond.
See More
Top
Pro
Nice hex display & edit
There's a handful of other features like this that make UltraEdit indispensable.
See More
Top
Pro
Extremely customizable GUI editor
UltraEdit offer the best of both worlds. it has a full on GUI along with all the shortcut commands you need. There's no need for the user to suffer 80 char limitations of a terminal editor.
See More
Top
Pro
Highly flexible
UltraEdit allows you to handle groups of files as a project.
See More
Specs
Platforms:
Windows, macOS, Linux
Hide
See All
Experiences
$79.99
58
11
Neovim
All
27
Experiences
Pros
18
Cons
8
Specs
Top
Pro
Still Vim but with upgraded features and some issues fixed
NeoVim was a complete rewrite of Vim, with new features added and underlying issues resolved thanks to the Vim code base. The keybindings and configuration are the same as Vim, so the switch can be pretty simple.
See More
Top
Con
Poor feature discoverability
See More
Top
Pro
Better integration with external tools
The core text editor is "headless", meaning it's detached from the user-interface so other programs can hook into it. This enables better integration with IDEs and browsers, where "Vim mode" has typically been a poor substitute because it was a partial rewrite or a partial port at best. One of the advantages of Vim has always been ubiquity and Neovim makes it even more ubiquitous.
See More
Top
Con
High effort to customize
A lot of time and effort is put in to make it specific to your needs.
See More
Top
Pro
Powerful plugin model
Vim plugins have always been useful, but tied to specific languages. Neovim's architecture provides better separation between plugins and the core product, so that plugins are completely flexible and can be written in any language.
See More
Top
Con
Requires Brain Mode Switching
When editing in vim, you have you use the vim keys; when editing in every other window on your PC, or in Word or Excel or other application, you need to use the standard system key combinations. Learning the vim combinations can actually make you SLOWER at everything else.
See More
Top
Pro
Built-in terminal emulator
This avoids the user having to make any installations.
See More
Top
Con
Consume brain energy for editing that should be used for logic
Text editing in vim can be great once you've learned it, but it requires thinking about combination of commands. In other editors, you don't have to think about how to delete this part of code. You just think about how to implement a feature, what is a good design for this code. Even after you get used to using vim, it still requires your brain for editing.
See More
Top
Pro
UI Agnostic
The core functionality is handled apart from the UI, meaning that Neovim can be embedded into any other GUI system, such as Atom.
See More
Top
Con
Ambiguity in extensive documentation
See More
Top
Pro
Async plugin execution
See More
Top
Con
Limited cross platform support
Neovim is not available for many legacy platforms
See More
Top
Pro
Active development community
See More
Top
Con
Split the VIM community
Moolenaar to be blamed for. If he opened up the development for vim to other bright minds, no fork would have happened. As it is mostly compatible with vim, it is not such a big issue.
See More
Top
Pro
Opens a 3Gig Text File in a few seconds
Not many editors can open such a large text file so quickly.
See More
Top
Con
Poor support for external tooling
See More
Top
Pro
Fast and light on memory usage
New neovim editor instance starts instantly and you can have multiple editors open at the same time, because id does not require a lot of memory to run.
See More
Top
Pro
Easier to pick-up than ever
Don't believe it? Try typing vimtutor in your command line right now.
See More
Top
Pro
Work in TUI (Text User Interface)
Neovim can work on terminal, on a remote server over ssh.
See More
Top
Pro
Modern code base
As a refactor over Vim, Neovim has greatly improved its code base. For example, some functionality is handled by libuv, the same code base that powers Node.js.
See More
Top
Pro
Comes with some good configurations out of the box
Some typical configurations most of VIM users make are default in Neovim.
See More
Top
Pro
Even more powerful since 2019, because of additions such as vim-coc, TabNine, fzf, skim
Vim gets stronger every time command-line tools get stronger. This isn't even it's the final form.
See More
Top
Pro
Config file is where it should be
I don't like having dotfiles or dotdirs in my homefolder unless they're needed. Configs should be in the .config dir in their respective folder.
See More
Top
Pro
Built-in file-explorer and ability to make splits and edit multiple things simutaneously.
This makes editing multiple files at once, moving code around so easy.
See More
Top
Pro
Treesitter and LSP
See More
Top
Pro
Terminal mode is very convenient for testing code in a split window
See More
Specs
Platforms:
Linux, Windows, macOS, *nix, Android
License:
Apache
Bracket Matching:
Yes
Error Markup:
Yes
See All Specs
Hide
See All
Experiences
Free
598
90
Geany
All
14
Experiences
Pros
10
Cons
3
Specs
Top
Pro
Light and fast
Geany is very lightweight thanks to the smaller offering of features.
See More
Top
Con
Not very advanced
Although it has some IDE features, it is not as advanced as some other text editors that can be extended to contain IDE functionality.
See More
Top
Pro
Built-in plugin manager
Geany has a built-in plugin manager which can be used to install plugins and add new powerful features to the editor.
See More
Top
Con
Windows installer not digitally signed
See More
Top
Pro
Quick search on large files
In Geany you technically search once for a whole search query, unlike Gedit, where once you start typing, the file is searched for in accordance with each substring of what you're typing, all the while leading to terribly annoying lag.
See More
Top
Con
Not many third-party plugins
Geany is not as popular as some other text editors with plugin support. As such it's understandable that it's missing lots of powerful plugins available in other editors.
See More
Top
Pro
Cross platform
Geany is a cross platform editor, very similar to Notepad++ in Windows.
See More
Top
Pro
Build in terminal
Press F5 and code will run without the need to switch between windows.
See More
Top
Pro
Actively developed Free (as in freedom) Software
This software respects your freedom.
See More
Top
Pro
Real syntax parsing (not just coloring)
Hence it is capable of showing the methods and inner classes of, e.g., a Java source file.
See More
Top
Pro
Simple project management
See More
Top
Pro
Native
It is a real app and not another frankenstein web/electron app. This means it runs great and doesn't extraordinary amounts of RAM.
See More
Top
Pro
Options in the menu are easy to find
For example, there is an easy way to change the font and theme in the View menu. No need to search through several syntax styles like in Notepad++ just to be able to change the used font.
See More
Specs
Platforms:
Windows, macOS, Linux
License:
GPL-2.0-only
Multi Language Support:
Yes
Auto Complete:
Yes
See All Specs
Hide
See All
Experiences
Free
325
63
Emacs
All
41
Experiences
Pros
30
Cons
10
Specs
Top
Pro
Keyboard-focused, mouse-free editing
Emacs can be controlled entirely with the keyboard. While true, I often find the mouse and menus handy for those lesser-used commands. An aide-memoir.
See More
Top
Con
Learning curve is long
While it's better than it used to be, with most functions being possible through the menu, Emacs is still quite a bit different from your standard editor. You'll need to learn new keyboard shortcuts.
See More
Top
Pro
Total customizability
Customizations can be made to a wide range of Emacs' functions through a Lisp dialect (Emacs Lisp). A robust list of existing Lisp extensions include the practical (git integration, syntax highlighting, etc) to the utilitarian (calculators, calendars) to the sublime (chess, Eliza).
See More
Top
Con
Sometimes the extensibility can distract you from your actual work
If I ever want to lose half a day, I'll start by tweaking my .spacemacs config file.
See More
Top
Pro
It's also an IDE
You can debug, compile, manage files, integrate with version control systems, etc. All through the various plugins that can be installed.
See More
Top
Con
Keyboard combinations can be confusing for new users
For example, for navigation it uses the b, n, p, l keys. Which for some people may seem strange in the begging. However they can be changed easily.
See More
Top
Pro
Works in terminal or as a GUI application
You can use Emacs' command line interface or graphical user interface.
See More
Top
Con
Documentation is not beginner-friendly
Although lots of good built-in documentation _exists_, I have after four years of Emacs as my primary editor not figured out how to actually make use of it, and rely completely on Google / StackOverflow for help.
See More
Top
Pro
Self documenting
Emacs has extensive help support built-in as well as a tutorial accessed with C-h t.
See More
Top
Con
User interface is terrible
I was using Emacs in the early 1980's, before there were GUIs. In fairness to Emacs, its original design was conceived in that context and is rather good at some things, like flexible ability to bind commands to keyboard shortcuts. Unfortunately, it didn't keep up with the times and fails to take advantage of the entire world of GUI design that's revolutionized computer science since then. So Emacs does 5% or what an editor should do quite will, and is surprisingly under-powered and old fashioned at the other 95%. To this day, it lacks or struggles with very basic things, like interactive dialogs, toolbars, tabbed interface, file system navigation, etc., etc. The things I just mentioned, are all present in some limited and inept form, but falls far short of current standard of good user interface design. For this reason, I would not recommend Emacs to anyone who is under 50 year old, or who needs power user capabilities. For casual, unsophisticated applications by someone who grew up with green screen character based computers, it's probably OK.
See More
Top
Pro
Free
Licensed under GNU GPL.
See More
Top
Con
Emacs lisp is very poorly designed
The language that's used for user customization, extensions, and for much of the basic editor functionality, is Emacs lisp, or elisp for short. I actually like lisp in general, especially Scheme, but unfortunately, elisp is one of the worst versions of lisp ever created, barely meriting being called lisp. It's very slow, impoverished in features, inconsistent, and rather inelegant in design. Elisp needed to be overhauled 20 or 30 years ago, but the Emacs developers were not willing to do the work. I believe this is one of the major reasons Emacs is so buggy, lacking in features, development is so slow, and consequently almost nobody uses it (or should use it) anymore.
See More
Top
Pro
Great documentation
With 30+ years of use the Emacs documentation is very thorough. There are also a lot of tutorials and guides written by third parties.
See More
Top
Con
Very poorly maintained
It's not clear to what extent Emacs is still supported. There's still some development taking place, but so slow that it's almost an abandoned project. There are numerous bugs in Emacs, many these days associated with start up and package management. When you search the Internet for solutions, you often find many posts, sometimes going back months or even years, with no clear fix.
See More
Top
Pro
Vi keybindings through Evil mode
Evil mode emulates vim behaviors within Emacs. It enables Vi users to move inside the Emacs universe.
See More
Top
Con
Hard customization
For customization, you need to learn Lisp.
See More
Top
Pro
Provides org-mode
Advanced planning and publication which can start as a simple list.
See More
Top
Con
A lot of jokes in this serious software
See More
Top
Pro
Enormous range of functionalities (way beyond simple "text editing")
Through its programmability, a very broad range of functionalities can be integrated in emacs, turning it even into a "single point of contact" with the underlying operating system.
See More
Top
Con
Using Emacs on a new machine without your .emacs file
See More
Top
Pro
Cross-platform
Works on Linux, Windows, Macintosh, BSD, and others.
See More
Top
Pro
Integrates planning in your development process
You can jump straight from your org-mode files to programming tasks - and back - and build a seamless workflow.
See More
Top
Pro
Versatile
Emacs is great for everything.
See More
Top
Pro
Mini buffer
You can pass complicated arguments in the mini buffer.
See More
Top
Pro
Ubiquity
Fully compliant GNU-emacs is available on many platforms, and they all understand .emacs configuration files.
See More
Top
Pro
Rectangular cut and paste
Emacs can select rectangularly.
See More
Top
Pro
Lisp customizations
With lisp customization, any behavior of Emacs can be changed. Update with pre-release patch can be also applied without recompiling the whole Emacs.
See More
Top
Pro
Visual selection and text objects with Evil
Evil is an extensible vi layer for Emacs. It provides Vim features like Visual selection and text objects.
See More
Top
Pro
dabbrev-expand (Alt-/)
Dynamic word completion.
See More
Top
Pro
Support multi-line editing, multiple frame, powerful paren, crazy jumping style
Review the "Emacs Rocks" video.
See More
Top
Pro
Has been widely used for a long time
The first verion of Emacs was written in 1974 and GNU Emacs in 1984.
See More
Top
Pro
Helm plugin adds even more power to Emacs
Powerful commands, search, and more with the Helm plugin.
See More
Top
Pro
GTK+ widgets support
Since version 25 you can run GTK widgets inside Emacs buffers. One of these is the WebKitGTK+, which allows the user to run a full-featured web browser inside Emacs with JavaScript and CSS support among other things.
See More
Top
Pro
Excelent tutorial to get you started
The tutorial you are presented with at startup shows you exactly what you need to get started and teaches you how to use the built-in help yourself later.
See More
Top
Pro
Interactive Shells
Emacs has a number of shell variants: ansi-term, shell, and eshell.
See More
Top
Pro
Emacs provides magit, the best and most complete GIT interface
Complex git history editing become a breeze with very few keystrokes. And simple ones are quickly stashed in muscle memory. Git becomes an direct extension of your brain thanks to Magit. Cherrypicking, blaming, resetting, interactive rebasing, line level commit, spinoff branches... you name it, magit already has it and has typically all those 5 to 10 git CLI commands of higher-level patterns also tide to one simple shortcut (want to amend a commit three commits away ? forgot to branch out and you've got already N commits on master ? ... etc... ).
See More
Top
Pro
Gnus
Managing several large mailing lists has never been easier using Gnus. The threading commands and the various ways of scoring articles means that I never miss important messages/authors, etc. A joy to use.
See More
Top
Pro
Eshell is cross platform
You can use the underlying operating system shell as a terminal emulation in an Emacs buffer. Don't like the default shell for your configuration? You can change it to your liking.
See More
Top
Pro
Excellent Lisp editing support
Built-in packages make editing Lisp source code feel natural.
See More
Top
Pro
Use-package and org-mode
Missing some neural package that predicts actions, maybe in the next release ...
See More
Specs
Platforms:
Unix-like, macOS, Windows, Cygwin
License:
GPL-3.0-or-later
Multi Language Support:
Yes
Auto Complete:
Yes
See All Specs
Hide
See All
Experiences
FREE
846
176
TeraCopy
All
6
Experiences
Pros
4
Cons
1
Specs
Top
Con
Sometimes clashes with 7 zip
From my experience, TeraCopy does not do well in conjunction with 7zips. It seems to error on some systems when you do a drag-and-drop extract.
See More
Top
Pro
Faster file deletion
It deletes files much much faster than built in Windows file manager.
See More
Top
Pro
Can check files for copy errors
TeraCopy can automatically check/verify the copied files for errors, by calculating their CRC or other checksum/hash value.
See More
Top
Pro
Seamless shell integration
See More
Top
Pro
Skips badly copied files
TeraCopy skips badly copied files during the copying process, and then displays them at the end of the transfer "Verify" with checksum/hash, so you can see which files to re-copy. See also, OpenHashTab for Windows and DeadHash for Windows, Linux, Android.
See More
Specs
Platforms:
Windows, Mac
License:
Proprietary
Hide
Free / paid
24
0
WizTree
All
6
Experiences
Pros
4
Cons
1
Specs
Top
Pro
Exceptionally fast for NTFS drives
Because it reads the master file table (MFT) directly from NTFS file system.
See More
Top
Con
Intended for NTFS only
It'll work with any other file system but with the same speed as any generic space analyzer.
See More
Top
Pro
Free
There is no limitation to using it.
See More
Top
Pro
Multiple view such as tree view, tree map, extension view, file view
Unlike other similar apps, which usually only offer single view, this app offers multiple views.
See More
Top
Pro
Handles "hard linked" files correctly - doesn't count them more than once
WizTree is faster and much more accurate than all the others as it properly handles hard linked files (doesn't count them more than once) so the total allocated size reported by WizTree will actually match the space used on the drive as reported by Windows.
See More
Specs
Platforms:
Windows
Interface:
GUI
Treemap:
Yes
Path exclusion:
Yes
See All Specs
Hide
FREE / $20
22
0
Visual Studio Code
All
39
Experiences
Pros
24
Cons
14
Specs
Top
Pro
Extendable through plug-ins
Visual Studio Code comes fairly complete out of the box, but there are many plug-ins available to extend its functionality.
See More
Top
Con
Embedded Git isn't powerful enough
You can do nothing but to track changes, stage them and commit. No history, visualization, rebasing or cherry-picking – these things are left to git console or external git client.
See More
Top
Pro
TypeScript integration
There is very solid TypeScript integration in Visual Studio Code. Both are developed by Microsoft and VSC itself is written in TypeScript.
See More
Top
Con
The autocomplete and code check is not as powerful as the one on WebStorm
Sometimes it doesn't tell you if you made a typo in a method name or if a method is not used and several other important features.
See More
Top
Pro
Integrated debugging
VSC includes debugging tools for Node.js, TypeScript, and JavaScript.
See More
Top
Con
File search is extremely slow
It's absolutely not possible to use this tool with big projects given how long it takes to search for files.
See More
Top
Pro
Ready to use out of the box
You don't need to configure and add plugins before being productive. However, you can add plugins if needed but for the basics you're well covered.
See More
Top
Con
Project search limits results
Because file search is so slow your results are limited in order to simulate a faster search.
See More
Top
Pro
Integrated terminal
There's no need to press alt+tab to go to a terminal: it is directly integrated into the editor. Shift+~ is a handy hotkey to toggle the integrated terminal.
See More
Top
Con
Very bad auto import
See More
Top
Pro
Great performance
For a 'wrapped' web-based application, Visual Studio Code performs very well.
See More
Top
Con
Generalized
VS Code is a general code/scripting IDE built to be lightweight and for people familiar with their language of choice, not directly comparable to Visual Studio in power or scope.
See More
Top
Pro
Libre/open source
Released under the MIT License.
See More
Top
Con
Memory hog
Allegedly, VS Code is "lightweight". Yet, running multiple instances of it at once, you may get many "out of memory" messages from Windows despite 16 GB RAM. (While of course also running other things. The point is the comparison with some other IDEs/editors where running them alongside the same number of other applications doesn't cause Windows to run out of memory)
See More
Top
Pro
Fast and powerful
VS-Code has the speed of Sublime and the power of WebStorm. Perhaps this is the best software that Microsoft has ever created.
See More
Top
Con
Poor error fix suggestions
Error detection and suggestions/fixes are poor compared to IntelliJ platforms
See More
Top
Pro
JavaScript IntelliSense support
JavaScript IntelliSense allows Visual Studio Code to provide you with useful hints and auto-completion features while you code.
See More
Top
Con
A "me too" offering from MS, far behind other well established editors that it attempts to clone
Other IDEs specific to a language often offer better tools for deep programming.
See More
Top
Pro
Embedded Git control
Visual Studio Code has integrated Git control, guaranteeing speed, data integrity, and support for distributed, non-linear workflows.
See More
Top
Con
Slow launch time
Slower than it's competitors, e.g. Sublime Text.
See More
Top
Pro
Updated frequently
There's a new release of Visual Studio Code every month. If you are one of the insiders then releases are daily.
See More
Top
Con
Emmet plugin often fails on even simple p tags
See More
Top
Pro
ESLint integration
ESLint integrates great. You can define your rules trough .eslintrc.* as usual and vs code will autofix your code on save. So your code is always in style.
See More
Top
Con
Have no good default js style analyzer
In WebStorm there is analyzer that checks for warnings and highlight this in yellow, here you cannot find or add it even with plugins. It is possible to have it as errors with linter but while you are actively changing file that's not very nice.
See More
Top
Pro
Extensions (aka plugins) are written in JavaScript
Extensions are written in either Typescript or JavaScript.
See More
Top
Con
.sass linting is terrible
See More
Top
Pro
Active development
It's really nice to see how the code editor evolves. Every month there is a new version with great communication of new features and changes.
See More
Top
Con
Is not an IDE, is a text editor
See More
Top
Pro
Integrated task runners
Task runners display lists of available tasks and performing these tasks is as simple as a click of the mouse.
See More
Top
Pro
It has gotten really good
All it takes is one stop for all the features many people need.
See More
Top
Pro
Custom snippets support
Snippets are templates that will insert text for you and adapt it to their context, and in VSC they are highly customizable.
See More
Top
Pro
Huge community behind it
The ease of getting assistance and finding tutorials is increasing as the community grows.
See More
Top
Pro
JS typechecking
It leverages TypeScript compiler functionality to statically type check JS (type inference, JSDoc types) with "javascript.implicitProjectConfig.checkJs": true option.
See More
Top
Pro
Python support
Excellent Python plugin, originally created by Don Jayamanne, now hired by Microsoft to extend and maintain the extension.
See More
Top
Pro
Good support for new Emmet syntax
See More
Top
Pro
High fidelity C# plugin
The Omnisharp plugin is very powerful providing full sln, csproj, and project.json support.
See More
Top
Pro
Support RTL languages
It supports pretty web rtl languages like arabic languages when most of other editors don't support it.
See More
Top
Pro
Inline definition picking and usages finding
These features allow you to have a glance at code without opening it as a whole in a separate tab. Moreover, editing is allowed.
See More
Specs
Platforms:
Windows, macOS, Linux
License:
MIT, Proprietary (official builds)
Multi Language Support:
Yes
Auto Complete:
Yes
See All Specs
Hide
See All
Experiences
FREE
4160
832
Notepad++
All
20
Experiences
Pros
12
Cons
7
Specs
Top
Pro
Syntax highlighting for a wide variety of languages
Notepad++ has built-in support for syntax highlighting for a wide selection of programming languages.
See More
Top
Con
Windows-only
While it can run in Wine, it is native only to Windows. Linux users will have to use Notepadqq instead.
See More
Top
Pro
Light and fast
Notepad++ is a very light program that starts almost instantly. This makes it a great text editor for users that want something that will start the second they open it.
See More
Top
Con
Settings confusingly scattered
Examples: try to change the tab size or used font.
See More
Top
Pro
Extendable via plugins
A list of hundreds of plugins is maintained.
See More
Top
Con
Annoying update notifications upon start-up
Annoying update notifications tend to pop up upon start-up after not having used the app or machine for a few days. At the same time, they can be easily turned off.
See More
Top
Pro
Portable
You can get a portable version of N++ and put it on a flash drive or your dropbox account and have your editor, configured the way you like, at any computer that you are on.
See More
Top
Con
Outdated UI
Only the text area can be themed, and it doesn't have as many features as browser-based text areas.
See More
Top
Pro
Free under GPL
Notepad++ is licensed under GPL, which means it is free/open source software that you can use freely.
See More
Top
Con
Limited new syntax support for new languages
It may be hard to find good plugins for relatively new languages.
See More
Top
Pro
Regex replace in selection, active tab, or all tabs
In Notepad++, the user can utilise regular expressions to quickly modify text across multiple files.
See More
Top
Con
Session backups not enabled by default
Unsaved tabs will be lost when Npp crashes, unless you first enable the session backup option.
See More
Top
Pro
Persistent documents, even after exiting the application
If you close Notepad++ (npp), your documents remain even if you haven't saved.
See More
Top
Con
User defined language doesn't support triple quote strings
It also doesn't support triple hashed comments. Both styles are overridden by their single character single line version.
See More
Top
Pro
User defined language syntax support
You can define your own custom syntax highlighting rules (or add support for others) .
See More
Top
Pro
Easy to use and admin
Very easy to use and personalize.
See More
Top
Pro
Multi-line editing
While it is disabled by default, when enabled, it is possible to edit more than one line at a time. This is helpful in many situations.
See More
Top
Pro
Split screen
The user can open and edit files in multiple screens within the editor window.
See More
Top
Pro
Supports Markdown
If you have the Plugin Manager installed you can search for MarkdownViewer++ and install it via that plugin.
See More
Specs
Platforms:
Windows
License:
GPL-3.0-or-later
Multi Language Support:
Yes
Auto Complete:
Yes
See All Specs
Hide
See All
Experiences
Free
579
161
Process Hacker
All
11
Experiences
Pros
10
Cons
1
Top
Pro
See programs with active network connections
See More
Top
Con
It might be a little intimidating for some users
See More
Top
Pro
Real-time information on disk access
See More
Top
Pro
Can be set as your default task manager
See More
Top
Pro
10x more detail and information about usage of PC resources and processes
See More
Top
Pro
Detailed overview of system activity with highlighting
See More
Top
Pro
Can create, edit and control services
See More
Top
Pro
Can track which processes are using a file
See More
Top
Pro
Open source
You can find the code here.
See More
Top
Pro
View detailed stack traces with kernel-mode
Supports WOW64 and .NET.
See More
Top
Pro
Graphs and statistics to quickly track down resource hogs and runaway processes
See More
Hide
See All
Experiences
free
20
0
Textpad
All
9
Experiences
Pros
5
Cons
3
Specs
Top
Pro
Highly efficient
Textpad can handle large text files very quickly.
See More
Top
Con
Macros are not editable
See More
Top
Pro
Fast and features macros
Text Pad is fast and supports macros for easy handling of repetitive tasks.
See More
Top
Con
No bold/italics
See More
Top
Pro
Large number of syntax highlighting add-ons
It's easy to add a new syntax highlighted language to TextPad.
See More
Top
Con
Disappointing keyboard shortcuts
The keyboard shortcuts in Textpad are a little dated.
See More
Top
Pro
Search and Replace
Excellent regex functions to manipulate data in large text based (csv, php, etc) files.
See More
Top
Pro
Easy to get started, especially for Java
When you require a minimal learning curve and a quick start to writing code, TextPad is one of the best choices. Especially for small Java projects, TextPad is the go-to editor.
See More
Specs
Platforms:
Windows
License:
Shareware
Bracket Matching:
Yes
Preview:
Download and use for free for 30 days
See All Specs
Hide
See All
Experiences
$3
10
0
Rapid environment editor
All
5
Experiences
Pros
4
Cons
1
Top
Pro
Warnings
Displays wrong entries in red, e.g. paths that do no longer exist.
See More
Top
Con
Simple
Some may not consider it a "power" user tool.
See More
Top
Pro
Easy
Editing of Windows environment variables is easy, splits long lines.
See More
Top
Pro
Resolve variables values, make easy a refactoring of PATH by extracting different elements in their own new variable
See More
Top
Pro
Convert variables between verbatim and expandable
Windows supports referencing variables within variables, but only if they're marked in the registry as expandable, and conversion between the two types is exposed in the context menu for each variable.
See More
Hide
Free
4
0
HovText
All
9
Experiences
Pros
8
Specs
Top
Pro
Trusted signed executable and open source
HovText has existed for 20 years and has always been open source.
See More
Top
Pro
Remove formatting from text copied
Copying text from the internet or from Office applications most often will include styles and formatting when pasting, but HovText can remove all this formatting, so only the raw unformatted cleartext will be pasted - this is a life-saver :-)
See More
Top
Pro
Keeps the most used clipboard entries at top
Most recent entries copied/pasted are available from a top-down principle.
See More
Top
Pro
Trim whitespaces and empty new-lines on copied text
When marking text with the mouse, it often adds a whitespace at the beginning or the end of the text or there are some empty lines above or below that gets copied too, but HovText has an option to remove whitespaces at beginning and end - very useful.
See More
Top
Pro
Intuitive, fast and modern UI for finding previous copied texts or images
When viewing the list of previous copied clipboards, then it is easy to find the relevant text or image you need.
See More
Top
Pro
Fully user configurable
All hotkeys can be configured and all layout, style and screen display can be tweaked, so there is a chance you can have it setup as you want.
See More
Top
Pro
Portable and no installation needed
Fast, light, no installation process and no registration needed - just "click and use".
See More
Top
Pro
Save clipboards on computer
The clipboards can be saved to local computer, so it can be reused after a computer shutdown.
See More
Specs
Platforms:
Windows 7/8/10/11
Initial Release:
2004-02-24
Approximate Size:
2.7MB
Newest Release:
2024-02-02
Hide
See All
Experiences
FREE
4
0
Greenshot (for Windows)
All
9
Experiences
Pros
7
Cons
2
Top
Con
Scrolling window capture is only working in Internet Explorer
See More
Top
Pro
Free and open source
Greenshot is licensed under GPL with source code available on BitBucket.
See More
Top
Con
This version only works on Windows, not Linux nor Mac
However, the same author now has a separate version of Greenshot for iOS, which is available (for a small fee) in the Mac App Store at https://itunes.apple.com/us/app/greenshot/id1103915944
See More
Top
Pro
Freezes screen when you capture
When you enter a capture mode, the screen content is preserved as it was when you started capturing.
See More
Top
Pro
Allows annotating, highlighting and obfuscating screenshots
See More
Top
Pro
Can capture an entire webpage
Instead of just capturing the visible portion of the page, this tool can capture all of the page in one image by scrolling through the page, taking images at set points and then stitching the images together.
See More
Top
Pro
Can be quickly invoked with the print screen button
Pressing the print screen button will allow you to select the captured area.
See More
Top
Pro
Selecting custom rectangle is the default
Easy to use selection tool with a magnifier to select only the part of the screen that you need.
See More
Top
Pro
Classic UI design makes it easy to use.
See More
Hide
See All
Experiences
FREE
46
3
Listary
All
4
Experiences
Pros
3
Specs
Top
Pro
It's also a launcher
Once you find the file you need, you can launch it or use custom actions.
See More
Top
Pro
Search as you type everywhere
You can start typing on the desktop or any folders and it'll just search for you.
See More
Top
Pro
Supports other explorers
It supports not only Windows Explorer but also XYplorer, Directory Opus, Total Commander and all the other explorer alternatives.
See More
Specs
Platforms:
Windows
Hide
Get it
here
77
5
010 Editor
All
6
Experiences
Pros
4
Cons
1
Specs
Top
Pro
Scriptable
Editing operations can be automated using a scripting language with a syntax similar to C++.
See More
Top
Con
Not free
It costs $49.99 (USD).
See More
Top
Pro
Binary Templates technology
The Editor can parse a file into a hierarchical structure using a Binary Template to help to understand the binary data.
See More
Top
Pro
Multi-Platform
Windows, macOS, or Linux
See More
Top
Pro
Alternative
An alternative to Synalize It!
See More
Specs
Platforms:
Windows, Linux, Mac
Hide
$49.95
53
4
FreeFileSync
All
20
Experiences
Pros
13
Cons
6
Specs
Top
Pro
It supports multiple protocols
It will work with MTP, FTP, SFTP, FTPS, and more.
See More
Top
Con
Does not preserve folder timestamps when copying
See More
Top
Pro
It can copy locked files
It supports Volume Shadow Copy Service, meaning that it can copy files even if they are in use or otherwise locked.
See More
Top
Con
Memory hog
It runs a little slow on computers who don't have much RAM available.
See More
Top
Pro
Cross-platform
It runs on Windows, Linux and MacOS.
See More
Top
Con
Limited built in history
The program only remembers the latest set of folders you synced, so you have to save your syncs or create batch files.
See More
Top
Pro
Portable version available
See More
Top
Con
A little intimidating for novices
If you never ran a file syncing software, this can be a little tricky to configure as your first one.
See More
Top
Pro
It is quite performant
See More
Top
Con
No backup encryption
See More
Top
Pro
Google Drive support
FreeFileSync provides direct access to Google Drive, no additional software is needed.
See More
Top
Con
It doesn't run on older Linux systems
It's dependencies don't allow it to run on older systems.
See More
Top
Pro
Completely free
Source code releases are provided under GPLv2.
See More
Top
Pro
It supports realtime sync
It can be configured to constantly monitor two folders for changes and sync them instantly when a change is detected.
See More
Top
Pro
It lets you program batch scripts
You can program your own jobs for execution as a script.
See More
Top
Pro
It supports case sensitive synchronization
For Unix-like systems.
See More
Top
Pro
It supports long file paths
It can copy files and folders with more than 260 characters in their paths.
See More
Top
Pro
It supports versioning
Versioning is keeping multiple instances of the modifications of your files.
See More
Top
Pro
It can sync both local disks and network shares
See More
Specs
Platforms:
Windows, Mac, Linux
License:
GPL-3.0-only
Hide
See All
Experiences
FREE
20
2
One Commander
All
18
Experiences
Pros
9
Cons
8
Specs
Top
Pro
Free
Free for non commercial use.
See More
Top
Con
Folders cannot be sorted by size
See More
Top
Pro
Simple and fast
Fast search and filter.
See More
Top
Con
Cannot access Android device connected by USB
See More
Top
Pro
Miller columns
Like Finder from macOS.
See More
Top
Con
Cannot access Android device by FTP
And can never will as this is clarified by developer that this feature will never be added.
See More
Top
Pro
Multi tab support
See More
Top
Con
It doesn't have UNDO function
Very important. When you work with valuable data files, this function can't be ommited.
See More
Top
Pro
Themes
Light, dark and customizable themes/colours.
See More
Top
Con
Navigating folders by Ctrl+Tab has considerable delay
See More
Top
Pro
Default file manager setup
Can make it the default file manager such that windows explorer stays out of the way for most of the work.
See More
Top
Con
Browsing Recycle Bin is very slow
Navigating away from Recycle Bin tab and coming back to it reload the Recycle Bin which is very slow as mentioned. Program has an option to open recycle bin in Windows File Explorer, which suggests that developer is aware that opening Recycle Bin is problematic.
See More
Top
Pro
File previews
See More
Top
Con
Confusing
See More
Top
Pro
File / folder filters
See More
Top
Con
Context menu only based on icons
No longer with Onecommander 3.6.43
See More
Top
Pro
Folder views can be saved and applied
See More
Specs
OS:
Windows 10 version 17763.0 or higher
Hide
See All
Experiences
Get it
here
41
4
Built By the Slant team
Find the best product instantly.
4.7 star rating
Add to Chrome
Add to Edge
Add to Firefox
Add to Opera
Add to Brave
Add to Safari
Try it now - it's free
{}
undefined
url next
price drop