Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the difference between gVim and gVim easy?

Tags:

vim

The question is self explanatory, but I haven't found a single resource that explains what the difference is after an hour of searching. After poking around a little bit in both, it appears that gVim and gVim easy are identical.

like image 764
Zach Wulf Avatar asked Jan 10 '13 05:01

Zach Wulf


People also ask

What's the difference between Gvim and Vim?

Both GVim and Vim are the same, the difference is that Gvim offers an interface that doesn't run in a terminal window. Basically, Gvim has GUI-like menus and toolbar. Here are quotes from Quora that provide more information: VIM is designed for using the keyboard efficiently and not for using the mouse.

What is Gvim?

gvim brings all the functionality, power, and features of Vim while adding the convenience and intuitive nature of a GUI environment. From traditional menus to visual highlighting editing, gvim provides the GUI experience today's users expect.

What is Gvim used for?

gVim is an open source text editor mainly used to edit source code, but can be used to edit any text file. It is developed for Windows, but other versions are available, including MacVim (for OS X) and Vim (for Linux).


3 Answers

Gvim easy is started and locked in insert-mode (every character you type is printed like a simple notepad).

Standard gvim starts in normal mode and you have to toggle between normal/insert like all other vim.

From help:

    Easy mode.  Implied for |evim| and |eview|.  Starts with
    'insertmode' set and behaves like a click-and-type editor.
    This sources the script $VIMRUNTIME/evim.vim.  Mappings are
    set up to work like most click-and-type editors, see
    |evim-keys|.  The GUI is started when available.
    {not in Vi}
like image 164
Tim Avatar answered Sep 23 '22 19:09

Tim


gVim-Easy, which is installed with gVim, has all the functionality of normal gVim but lacks modes. This is especially useful for begginers and people who do not want to, or do not have the time to, learn how to use gVim. Users can benefit from gVim's superior syntax highlighting and auto-indentation while not having to have to learn the, often deemed complex, command set of gVim in order to edit a simple document. It is recommended that readers of this tutorial at least try to learn how to use gVim in normal mode, the learning curve is steep, but, the benefits in speed and usability this confers is worth the investment.

Read here

like image 37
CloudyMarble Avatar answered Sep 22 '22 19:09

CloudyMarble


  • gVim Easy: gvim.exe -y (pass a parameter y)
  • gVim: gvim.exe
like image 32
Carson Avatar answered Sep 22 '22 19:09

Carson